Skip to content

Commit 4c39785

Browse files
committed
chore: create .csproj test file
1 parent a20b22c commit 4c39785

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

tests/Playtesters.API.Tests.csproj

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>disable</Nullable>
7+
8+
<IsPackable>false</IsPackable>
9+
<IsTestProject>true</IsTestProject>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="coverlet.collector" Version="6.0.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
15+
<PackageReference Include="NUnit" Version="3.14.0" />
16+
<PackageReference Include="NUnit.Analyzers" Version="3.9.0" />
17+
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
18+
<PackageReference Include="FluentAssertions" Version="[7.0.0,8.0.0)" />
19+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" />
20+
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.5" />
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<ProjectReference Include="..\src\Playtesters.API.csproj" />
25+
</ItemGroup>
26+
27+
<ItemGroup>
28+
<Using Include="NUnit.Framework" />
29+
</ItemGroup>
30+
31+
</Project>

0 commit comments

Comments
 (0)