|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net472;netcoreapp2.1</TargetFrameworks> |
| 4 | + <TargetFrameworks>net472;netcoreapp2.1;net5.0</TargetFrameworks> |
5 | 5 | </PropertyGroup> |
6 | 6 |
|
7 | 7 | <ItemGroup> |
8 | 8 | <ProjectReference Include="..\LibGit2Sharp\LibGit2Sharp.csproj" /> |
9 | | - <ProjectReference Include="..\NativeLibraryLoadTestApp\x86\NativeLibraryLoadTestApp.x86.csproj" Condition="'$(TargetFramework)' != 'netcoreapp2.1'" ReferenceOutputAssembly="false" OutputItemType="TestAppExe" /> |
10 | | - <ProjectReference Include="..\NativeLibraryLoadTestApp\x64\NativeLibraryLoadTestApp.x64.csproj" Condition="'$(TargetFramework)' != 'netcoreapp2.1'" ReferenceOutputAssembly="false" OutputItemType="TestAppExe" /> |
| 9 | + <ProjectReference Include="..\NativeLibraryLoadTestApp\x86\NativeLibraryLoadTestApp.x86.csproj" Condition="'$(TargetFramework)' == 'net472'" ReferenceOutputAssembly="false" OutputItemType="TestAppExe" /> |
| 10 | + <ProjectReference Include="..\NativeLibraryLoadTestApp\x64\NativeLibraryLoadTestApp.x64.csproj" Condition="'$(TargetFramework)' == 'net472'" ReferenceOutputAssembly="false" OutputItemType="TestAppExe" /> |
11 | 11 | </ItemGroup> |
12 | 12 |
|
13 | 13 | <ItemGroup> |
14 | 14 | <PackageReference Include="coverlet.msbuild" Version="2.7.0" /> |
15 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" /> |
16 | | - <PackageReference Include="Moq" Version="4.10.1" /> |
17 | | - <PackageReference Include="System.ValueTuple" Version="4.5.0" /> |
| 15 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" /> |
| 16 | + <PackageReference Include="Moq" Version="4.16.1" /> |
18 | 17 | <PackageReference Include="xunit" Version="2.4.1" /> |
19 | 18 | <PackageReference Include="xunit.runner.console" Version="2.4.1" /> |
20 | | - <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" /> |
21 | | - <PackageReference Include="xunit.skippablefact" Version="1.3.12" /> |
| 19 | + <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" /> |
| 20 | + <PackageReference Include="xunit.skippablefact" Version="1.4.13" /> |
22 | 21 | </ItemGroup> |
23 | 22 |
|
24 | 23 | <ItemGroup> |
25 | 24 | <Compile Include="..\LibGit2Sharp\Core\Platform.cs" Link="TestHelpers\Platform.cs" /> |
26 | | - <Compile Remove="desktop\**" Condition="'$(TargetFramework)' == 'netcoreapp2.1'" /> |
| 25 | + <Compile Remove="desktop\**" Condition="'$(TargetFramework)' != 'net472'" /> |
27 | 26 | <Content Include="Resources\**\*.*" CopyToOutputDirectory="PreserveNewest" /> |
28 | 27 | <None Update="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" /> |
29 | 28 | </ItemGroup> |
|
0 commit comments