-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJD.Efcpt.Sdk.IntegrationTests.csproj
More file actions
39 lines (33 loc) · 1.59 KB
/
JD.Efcpt.Sdk.IntegrationTests.csproj
File metadata and controls
39 lines (33 loc) · 1.59 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
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Longer timeout for integration tests that run builds -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="xunit" />
<PackageReference Include="Xunit.SkippableFact" />
<PackageReference Include="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" />
<PackageReference Include="Testcontainers.MsSql" />
<PackageReference Include="Microsoft.Data.SqlClient" />
</ItemGroup>
<!-- Include test fixtures as content -->
<ItemGroup>
<None Include="TestFixtures\**\*" CopyToOutputDirectory="PreserveNewest" />
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<!-- Reference SDK projects (for packing during tests) -->
<ItemGroup>
<ProjectReference Include="..\..\src\JD.Efcpt.Sdk\JD.Efcpt.Sdk.csproj" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\src\JD.Efcpt.Build\JD.Efcpt.Build.csproj" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\src\JD.Efcpt.Build.Templates\JD.Efcpt.Build.Templates.csproj" ReferenceOutputAssembly="false" />
</ItemGroup>
</Project>