forked from OmniSharp/csharp-language-server-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDap.Tests.csproj
21 lines (21 loc) · 1.04 KB
/
Dap.Tests.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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\Dap.Protocol\Dap.Protocol.csproj" />
<ProjectReference Include="..\..\src\Dap.Protocol.Proposals\Dap.Protocol.Proposals.csproj" />
<ProjectReference Include="..\..\src\Dap.Testing\Dap.Testing.csproj" />
<ProjectReference Include="..\TestingUtils\TestingUtils.csproj" />
<ProjectReference Include="..\..\src\JsonRpc.Generators\JsonRpc.Generators.csproj" IncludeAssets="analyzers" ExcludeAssets="compile;runtime;native" PrivateAssets="contentfiles;build;buildMultitargeting;buildTransitive" OutputItemType="Analyzer" />
</ItemGroup>
<ItemGroup>
<Folder Include="obj\Release\net6.0\" />
</ItemGroup>
</Project>