/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Microsoft.CommonLanguageServerProtocol.Framework.Example/Microsoft.CommonLanguageServerProtocol.Framework.Example.csproj
25 строк
1 KB
Ankita Khera
Migrate Microsoft.VisualStudio.LanguageServices ServiceHub services to .NET 10 (#82486)
24 фев 2026, 00:38
Не верифицирован
24 фев 2026, 00:38
f41027b
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <!-- 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. --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Library</OutputType> <TargetFrameworks>$(NetRoslynAll);netstandard2.0</TargetFrameworks> <IsShipping>false</IsShipping> <IsPackable>false</IsPackable> <PackageDescription>An example implementation of the Common Language Server Protocol Framework.</PackageDescription> </PropertyGroup> <ItemGroup Label="Package References"> <PackageReference Include="Microsoft.Extensions.DependencyInjection" /> </ItemGroup> <ItemGroup Label="Project References"> <ProjectReference Include="..\Protocol\Microsoft.CodeAnalysis.LanguageServer.Protocol.csproj" /> </ItemGroup> <ItemGroup> <InternalsVisibleTo Include="Microsoft.CommonLanguageServerProtocol.Framework.UnitTests" /> </ItemGroup> <Import Project="..\..\Dependencies\Contracts\Microsoft.CodeAnalysis.Contracts.projitems" Label="Shared" /> </Project>