/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol.TestUtilities/LspTestCompositions.cs
14 строк
592 B
David Barbet
Implement LSP daemon mode (#84199)
25 июл 2026, 00:26
Не верифицирован
25 июл 2026, 00:26
490f516
Код
Авторство
О чём код?
// 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.LanguageServer; namespace Microsoft.CodeAnalysis.Test.Utilities; public static class LspTestCompositions { public static readonly TestComposition LanguageServerProtocol = FeaturesTestCompositions.Features .AddAssemblies(typeof(LanguageServerProtocolResources).Assembly) .AddParts(typeof(TestLspWorkspaceRegistrationEventListener)); }