2024-09-05 20:44:45 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-11-25 16:17:59 +01:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
2025-01-30 10:58:14 -05:00
|
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
2025-11-25 15:34:59 +01:00
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.2">
|
2024-09-05 20:44:45 -04:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2025-01-27 09:17:18 -05:00
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4">
|
2024-09-05 20:44:45 -04:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-02-06 17:07:43 -05:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\Infrastructure.Dapper\Infrastructure.Dapper.csproj" />
|
2024-09-05 20:44:45 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|