/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/EnvironmentVariables/EnvironmentVariablesUILib/Helpers/ResourceLoaderInstance.cs
17 строк
622 B
Stefan Markovic
[EnvVar][Hosts][RegPrev]Decouple and refactor to make it "packable" as nuget package (#32604)
26 апр 2024, 20:41
Не верифицирован
26 апр 2024, 20:41
41a0114
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Microsoft.Windows.ApplicationModel.Resources; namespace EnvironmentVariablesUILib.Helpers { public static class ResourceLoaderInstance { public static ResourceLoader ResourceLoader { get; private set; } static ResourceLoaderInstance() { ResourceLoader = new ResourceLoader("PowerToys.EnvironmentVariablesUILib.pri", "PowerToys.EnvironmentVariablesUILib/Resources"); } } }