winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

Resources.cpp (444B)


      1 // Copyright (c) Microsoft Corporation.
      2 // Licensed under the MIT License.
      3 #include "pch.h"
      4 #include "Resources.h"
      5 
      6 using namespace AppInstaller::Utility::literals;
      7 
      8 namespace AppInstaller::CLI::Resource
      9 {
     10     Utility::LocIndView GetFixedString(FixedString fs)
     11     {
     12         switch (fs)
     13         {
     14         case FixedString::ProductName: return "Windows Package Manager"_liv;
     15         }
     16 
     17         THROW_HR(E_UNEXPECTED);
     18     }
     19 }