/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/Attributes/CmdConfigureIgnoreAttribute.cs
16 строк
633 B
Andrey Nekrasov
[DSC] Implement Microsoft.PowerToys.Configure DSCResource & winget support (#30918)
02 апр 2024, 02:09
Не верифицирован
02 апр 2024, 02:09
f23fa3f
Код
Авторство
О чём код?
// 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; namespace Settings.UI.Library.Attributes; /// <summary> /// Adding this attribute to a property makes it not configurable from the command line. /// Typical use cases: /// - Property represents internal module state. /// - Property has a type that is unwieldy to type as a command line string. /// </summary> [AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] public class CmdConfigureIgnoreAttribute : Attribute;