blob: fc77ecf4df04097e99a136645949963a898b8da0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="*-*" />
<PackageReference Include="MSTest.TestAdapter" Version="*-*" />
<PackageReference Include="MSTest.TestFramework" Version="*-*" />
<PackageReference Include="coverlet.collector" Version="*-*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\Locusts.csproj" />
</ItemGroup>
</Project>
|