-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTests.csproj
32 lines (32 loc) · 1.06 KB
/
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
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>net4.8-windows</TargetFramework>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\.editorconfig"
Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk"
Version="17.5.0" />
<PackageReference Include="MSTest.TestAdapter"
Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework"
Version="2.2.10" />
<PackageReference Include="coverlet.collector"
Version="3.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Quokka\Quokka.csproj" />
</ItemGroup>
</Project>