-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotoriousTest.Sample.XUnit.csproj
More file actions
43 lines (39 loc) · 1.68 KB
/
NotoriousTest.Sample.XUnit.csproj
File metadata and controls
43 lines (39 loc) · 1.68 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
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<IsIntegrationTest>true</IsIntegrationTest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Respawn" />
<PackageReference Include="xunit.v3" />
<PackageReference Include="xunit.runner.visualstudio">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\NotoriousTest.SqlServer\NotoriousTest.SqlServer.csproj" />
<ProjectReference Include="..\..\NotoriousTest.TestContainers\NotoriousTest.TestContainers.csproj" />
<ProjectReference Include="..\..\NotoriousTest.Web\NotoriousTest.Web.csproj" />
<ProjectReference Include="..\..\NotoriousTest.XUnit\NotoriousTest.XUnit.csproj" />
<ProjectReference Include="..\..\NotoriousTest\NotoriousTest.csproj" />
<ProjectReference Include="..\NotoriousTest.Sample.TestWebApp\NotoriousTest.Sample.TestWebApp.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Tables.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="testsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="xunit.runner.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>