-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEasyTestFile.Xunit.CopyAlways.Tests.csproj
33 lines (31 loc) · 1.44 KB
/
EasyTestFile.Xunit.CopyAlways.Tests.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8</TargetFramework>
<RootNamespace>EasyTestFileXunit.CopyAlways.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\EasyTestFile.Json\EasyTestFile.Json.csproj" />
<ProjectReference Include="..\..\src\EasyTestFile.Xunit\EasyTestFile.Xunit.csproj" />
<ProjectReference Include="..\..\src\EasyTestFile\EasyTestFile.csproj" />
<PackageReference Include="Meziantou.Xunit.ParallelTestFramework" />
<PackageReference Include="Verify.Xunit" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.analyzers" />
<PackageReference Include="xunit.categories" />
<PackageReference Include="xunit.runner.console" />
<PackageReference Include="xunit.runner.visualstudio">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="xunit.runner.reporters">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<!-- begin-snippet: CompiletimeConfigurationEasyTestFileMode -->
<PropertyGroup>
<!-- Embed;CopyAlways;CopyPreserveNewest;None -->
<EasyTestFileMode>CopyAlways</EasyTestFileMode>
</PropertyGroup>
<!-- end-snippet -->
</Project>