forked from OmniSharp/csharp-language-server-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLsp.Integration.Tests.csproj
30 lines (29 loc) · 1.38 KB
/
Lsp.Integration.Tests.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<WarningsAsErrors>true</WarningsAsErrors>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Remove="**\*.json" />
<EmbeddedResource Include="**\*.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Client\Client.csproj" />
<ProjectReference Include="..\..\src\Server\Server.csproj" />
<ProjectReference Include="..\..\src\Protocol\Protocol.csproj" />
<ProjectReference Include="..\..\src\Protocol.Proposals\Protocol.Proposals.csproj" />
<ProjectReference Include="..\..\src\Testing\Testing.csproj" />
<ProjectReference Include="..\TestingUtils\TestingUtils.csproj" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
<PackageReference Include="Microsoft.Extensions.Options" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" />
<ProjectReference
Include="..\..\src\JsonRpc.Generators\JsonRpc.Generators.csproj"
IncludeAssets="analyzers"
ExcludeAssets="compile;runtime;native"
PrivateAssets="contentfiles;build;buildMultitargeting;buildTransitive"
OutputItemType="Analyzer"
/>
</ItemGroup>
</Project>