33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net10.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<IsPackable>false</IsPackable>
|
||
|
|
<RootNamespace>SIGCM2.Api.Tests</RootNamespace>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="coverlet.collector" />
|
||
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
||
|
|
<PackageReference Include="xunit" />
|
||
|
|
<PackageReference Include="xunit.runner.visualstudio" />
|
||
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
|
||
|
|
<PackageReference Include="NSubstitute" />
|
||
|
|
<PackageReference Include="FluentAssertions" />
|
||
|
|
<PackageReference Include="Respawn" />
|
||
|
|
<PackageReference Include="Microsoft.Data.SqlClient" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\src\api\SIGCM2.Api\SIGCM2.Api.csproj" />
|
||
|
|
<ProjectReference Include="..\SIGCM2.TestSupport\SIGCM2.TestSupport.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Using Include="Xunit" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|