2023-02-22 14:03:35 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-11-14 23:27:29 +01:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-02-22 14:03:35 +01:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-04-10 17:38:34 +02:00
|
|
|
<Configurations>Debug;Release</Configurations>
|
2021-11-14 23:27:29 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Remove="UseCase\Startup\TestTinkApp.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Include="UseCase\Startup\TestTinkApp.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-07-04 11:06:38 +02:00
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0">
|
2023-04-19 12:14:14 +02:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-22 14:03:35 +01:00
|
|
|
<PackageReference Include="NSubstitute" Version="5.0.0" />
|
2022-04-25 22:15:15 +02:00
|
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
2021-11-14 23:27:29 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\TestFramework\TestFramework.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|