-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDBTeam.IntegrationTests.csproj
More file actions
30 lines (24 loc) · 1.01 KB
/
DBTeam.IntegrationTests.csproj
File metadata and controls
30 lines (24 loc) · 1.01 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
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<!-- Only run when SQL Server LocalDB is available (Windows runners). Skip in xplat CI. -->
<RunIntegrationTests Condition="'$(RunIntegrationTests)' == ''">true</RunIntegrationTests>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="xunit" Version="2.5.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\DBTeam.Core\DBTeam.Core.csproj" />
<ProjectReference Include="..\..\src\DBTeam.Data\DBTeam.Data.csproj" />
</ItemGroup>
</Project>