2
2
<Project xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
3
4
4
<PropertyGroup >
5
- <FluentAssertionsVersion >6.6.0</FluentAssertionsVersion >
6
- <FluentAssertionsVersion Condition =" '$(TargetFramework)' == 'net452' " >5.10.3</FluentAssertionsVersion >
7
- <TestHostVersion >6.0.4-*</TestHostVersion >
8
- <TestHostVersion Condition =" '$(TargetFramework)' == 'netcoreapp3.1' " >3.1.24</TestHostVersion >
5
+ <FluentAssertionsVersion >6.7.0</FluentAssertionsVersion >
6
+ <MoqVersion >4.18.2</MoqVersion >
7
+ <XunitRunnerVersion >2.4.5</XunitRunnerVersion >
8
+ <TestHostVersion >6.0.8-*</TestHostVersion >
9
+ </PropertyGroup >
10
+
11
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'net452' " >
12
+ <FluentAssertionsVersion >5.10.3</FluentAssertionsVersion >
13
+ <MoqVersion >4.17.2</MoqVersion >
14
+ <XunitRunnerVersion >2.4.3</XunitRunnerVersion >
15
+ </PropertyGroup >
16
+
17
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'netcoreapp3.1' " >
18
+ <TestHostVersion >3.1.28</TestHostVersion >
9
19
</PropertyGroup >
10
20
11
21
<ItemGroup Condition =" '$(IsSharedProject)' == 'false' " >
12
22
<PackageReference Include =" FluentAssertions" Version =" $(FluentAssertionsVersion)" />
23
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.3.0" />
24
+ <PackageReference Include =" Moq" Version =" $(MoqVersion)" />
25
+ <PackageReference Include =" xunit" Version =" 2.4.2" />
26
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" $(XunitRunnerVersion)" />
13
27
</ItemGroup >
14
28
15
29
<ItemGroup Condition =" '$(IsAspNetCore)' == 'true' " >
18
32
19
33
<ItemGroup >
20
34
<Using Include =" FluentAssertions" />
35
+ <Using Include =" Moq" />
36
+ <Using Include =" Xunit" />
37
+ <Using Include =" Xunit.Abstractions" />
21
38
</ItemGroup >
22
39
23
40
</Project >
0 commit comments