2022-04-25 22:15:15 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-11-14 23:27:29 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</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>
|
2022-08-30 15:42:25 +02:00
|
|
|
|
<PackageReference Include="NSubstitute" Version="4.4.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>
|