/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/EnvironmentVariablesSettings.cs
46 строк
1 KB
Noraa Junker
Remove ISettingsUtils and ISettingsPath interfaces (#44331)
19 дек 2025, 05:30
Не верифицирован
19 дек 2025, 05:30
7cd201d
Код
Авторство
О чём код?
// 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 System; using System.Text.Json; using System.Text.Json.Serialization; using Microsoft.PowerToys.Settings.UI.Library.Interfaces; namespace Microsoft.PowerToys.Settings.UI.Library { public class EnvironmentVariablesSettings : BasePTModuleSettings, ISettingsConfig { public const string ModuleName = "EnvironmentVariables"; private static readonly JsonSerializerOptions _serializerOptions = new JsonSerializerOptions { WriteIndented = true, }; [JsonPropertyName("properties")] public EnvironmentVariablesProperties Properties { get; set; } public EnvironmentVariablesSettings() { Properties = new EnvironmentVariablesProperties(); Version = "1.0"; Name = ModuleName; } public virtual void Save(SettingsUtils settingsUtils) { // Save settings to file var options = _serializerOptions; ArgumentNullException.ThrowIfNull(settingsUtils); settingsUtils.SaveSettings(JsonSerializer.Serialize(this, options), ModuleName); } public string GetModuleName() => Name; public bool UpgradeSettingsConfiguration() => false; } }