/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol/Features/Options/FileBasedAppsOptionsStorage.cs
17 строк
730 B
Rikki Gibson
File-based apps automatic discovery (#82863)
03 апр 2026, 23:23
Не верифицирован
03 апр 2026, 23:23
18365a9
Код
Авторство
О чём код?
// 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.Options; namespace Microsoft.CodeAnalysis.LanguageServer.HostWorkspace; internal static class FileBasedAppsOptionsStorage { private static readonly OptionGroup s_optionGroup = new(name: "file_based_apps", description: ""); /// <summary> /// Whether to automatically discover and load file-based app entry points. /// </summary> public static readonly Option2<bool> EnableAutomaticDiscovery = new("dotnet_enable_automatic_discovery", defaultValue: true, s_optionGroup); }