24 lines
645 B
XML
24 lines
645 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<RootNamespace>FiscalOS.Core.Tests</RootNamespace>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="AwesomeAssertions" />
|
||
|
|
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" />
|
||
|
|
<PackageReference Include="Moq" />
|
||
|
|
<PackageReference Include="xunit.v3.mtp-v2" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\src\FiscalOS.Core\FiscalOS.Core.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|