/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Microsoft.CommonLanguageServerProtocol.Framework/Microsoft.CommonLanguageServerProtocol.Framework.Package.csproj
29 строк
1 KB
Tomáš Matoušek
More improvements to source packages (#78587)
16 май 2025, 01:46
Не верифицирован
16 май 2025, 01:46
015a854
Код
Авторство
О чём код?
<?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. --> <!-- Defines a source-only package for the Microsoft.CommonLanguageServerProtocol.Framework sources. --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Library</OutputType> <TargetFramework>netstandard2.0</TargetFramework> <!-- NuGet --> <IsPackable>true</IsPackable> <IsSourcePackage>true</IsSourcePackage> <PackageId>Microsoft.CommonLanguageServerProtocol.Framework</PackageId> <IncludeBuildOutput>false</IncludeBuildOutput> <PackageDescription> A framework of sources for building Language Server Protocol implementations in C#. </PackageDescription> <!-- Remove once https://github.com/NuGet/Home/issues/8583 is fixed --> <NoWarn>$(NoWarn);NU5128</NoWarn> <!-- Required to avoid NuGet ignoring the .editorconfig file --> <NoDefaultExcludes>true</NoDefaultExcludes> </PropertyGroup> <ItemGroup> <PackageReference Include="StreamJsonRpc" /> </ItemGroup> <Import Project="..\..\Dependencies\Contracts\Microsoft.CodeAnalysis.Contracts.projitems" Label="Shared" /> </Project>