-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathFluentValidationsExtensions.Tests.csproj
More file actions
29 lines (24 loc) · 1.13 KB
/
FluentValidationsExtensions.Tests.csproj
File metadata and controls
29 lines (24 loc) · 1.13 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentValidation" Version="11.5.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\CommandLineParser.Tests\CommandLineParser.Tests.csproj" />
<ProjectReference Include="..\..\..\CommandLineParser\CommandLineParser.csproj" />
<ProjectReference Include="..\..\FluentValidationsExtensions\FluentValidationsExtensions.csproj" />
</ItemGroup>
</Project>