2026-02-01 04:23:12 -06:00
|
|
|
<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" />
|
2026-02-02 13:18:28 -06:00
|
|
|
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" />
|
|
|
|
|
<PackageReference Include="Moq" />
|
2026-02-01 04:23:12 -06:00
|
|
|
<PackageReference Include="xunit.v3.mtp-v2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
|
2026-02-12 20:49:12 -06:00
|
|
|
<Content Include="appsettings.Test.json" CopyToOutputDirectory="PreserveNewest" />
|
2026-02-01 04:23:12 -06:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\FiscalOS.API\FiscalOS.API.csproj" />
|
2026-02-02 04:49:00 -06:00
|
|
|
<ProjectReference Include="..\..\src\FiscalOS.Core\FiscalOS.Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\FiscalOS.Infra\FiscalOS.Infra.csproj" />
|
2026-03-10 07:42:51 -05:00
|
|
|
<ProjectReference Include="..\FiscalOS.Tests.Common\FiscalOS.Tests.Common.csproj" />
|
2026-02-01 04:23:12 -06:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|