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