-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbQuery.Test.csproj
More file actions
28 lines (24 loc) · 1.09 KB
/
DbQuery.Test.csproj
File metadata and controls
28 lines (24 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
<RootNamespace>GarageGroup.Infra.Sql.Api.Core.Test</RootNamespace>
<AssemblyName>GarageGroup.Infra.Sql.Api.Core.DbQuery.Test</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\DbQuery\DbQuery.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>