Files
EmailBill/WebApi.Test/WebApi.Test.csproj

23 lines
799 B
XML
Raw Normal View History

2026-01-28 19:32:11 +08:00
<Project Sdk="Microsoft.NET.Sdk">
2026-01-18 22:17:32 +08:00
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector"/>
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
<PackageReference Include="xunit"/>
<PackageReference Include="xunit.runner.visualstudio"/>
2026-01-20 19:11:05 +08:00
<PackageReference Include="NSubstitute" />
<PackageReference Include="FluentAssertions" />
2026-01-18 22:17:32 +08:00
</ItemGroup>
<ItemGroup>
2026-02-10 17:49:19 +08:00
<ProjectReference Include="..\Application\Application.csproj" />
2026-01-20 19:11:05 +08:00
<ProjectReference Include="..\Service\Service.csproj" />
2026-01-18 22:17:32 +08:00
</ItemGroup>
</Project>