/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/CSharp/Impl/Options/AutomationObject/AutomationObject.Fading.cs
28 строк
992 B
Cyrus Najmabadi
Add options and UI
19 дек 2024, 21:15
19 дек 2024, 21:15
8f7b161
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Microsoft.CodeAnalysis.CodeStyle; namespace Microsoft.VisualStudio.LanguageServices.CSharp.Options; public partial class AutomationObject { public int Fading_FadeOutUnreachableCode { get { return GetBooleanOption(FadingOptions.FadeOutUnreachableCode); } set { SetBooleanOption(FadingOptions.FadeOutUnreachableCode, value); } } public int Fading_FadeOutUnusedImports { get { return GetBooleanOption(FadingOptions.FadeOutUnusedImports); } set { SetBooleanOption(FadingOptions.FadeOutUnusedImports, value); } } public int Fading_FadeOutUnusedMembers { get { return GetBooleanOption(FadingOptions.FadeOutUnusedMembers); } set { SetBooleanOption(FadingOptions.FadeOutUnusedMembers, value); } } }