/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Microsoft.CodeAnalysis.LanguageServer/FileBasedPrograms/LooseDocumentKind.cs
16 строк
578 B
Rikki Gibson
Refactor fbp workspace management (#82509)
20 мар 2026, 01:58
Не верифицирован
20 мар 2026, 01:58
7f59aed
Код
Авторство
О чём код?
// 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. namespace Microsoft.CodeAnalysis.LanguageServer.FileBasedPrograms; /// <summary> /// See /docs/features/file-based-programs-vscode.md#file-based-app-detection /// </summary> internal enum LooseDocumentKind { MiscellaneousFileWithNoReferences, MiscellaneousFileWithStandardReferences, MiscellaneousFileWithStandardReferencesAndSemanticErrors, FileBasedApp, }