-
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.72 KB
/
JD.Efcpt.Sdk.IntegrationTests.csproj
File metadata and controls
39 lines (33 loc) · 1.72 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" Version="6.0.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="Xunit.SkippableFact" Version="1.5.61" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="8.8.0" />
<PackageReference Include="Testcontainers.MsSql" Version="4.11.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.4" />
</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>