23 lines
594 B
XML
23 lines
594 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<RootNamespace>FiscalOS.API.Tests</RootNamespace>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="AwesomeAssertions" />
|
||
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
|
||
|
|
<PackageReference Include="xunit.v3.mtp-v2" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\src\FiscalOS.API\FiscalOS.API.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|