Skip to content

Commit bc58ae0

Browse files
Bump sdk and move .NET tool to LTS (#1022)
Bump sdk and move .NET tool to LTS
1 parent fcb2ec0 commit bc58ae0

File tree

19 files changed

+75
-75
lines changed

19 files changed

+75
-75
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</PropertyGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Nerdbank.GitVersioning" Version="3.0.28" PrivateAssets="all" />
25+
<PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="all" />
2626
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" />
2727
</ItemGroup>
2828
</Project>

eng/azure-pipelines-nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ pool:
44
steps:
55
- task: UseDotNet@2
66
inputs:
7-
version: 2.2.402
8-
displayName: Install .NET Core SDK 2.2.402
7+
version: 3.1.404
8+
displayName: Install .NET Core SDK 3.1.404
99

1010
- task: UseDotNet@2
1111
inputs:
12-
version: 3.1.401
13-
displayName: Install .NET Core SDK 3.1.401
12+
version: 5.0.101
13+
displayName: Install .NET Core SDK 5.0.101
1414

1515
- task: NuGetAuthenticate@0
1616
displayName: Authenticate with NuGet feeds

eng/azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ trigger:
77
jobs:
88
- job: Windows
99
displayName: Windows
10-
continueOnError: true
10+
continueOnError: 'true'
1111
strategy:
1212
matrix:
1313
Debug:
@@ -37,7 +37,7 @@ jobs:
3737

3838
- job: macOS
3939
displayName: macOS
40-
continueOnError: true
40+
continueOnError: 'true'
4141
strategy:
4242
matrix:
4343
Debug:
@@ -51,7 +51,7 @@ jobs:
5151

5252
- job: Linux
5353
displayName: Linux
54-
continueOnError: true
54+
continueOnError: 'true'
5555
strategy:
5656
matrix:
5757
Debug:

eng/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
steps:
22
- task: UseDotNet@2
33
inputs:
4-
version: 2.2.402
5-
displayName: Install .NET Core SDK 2.2.402
4+
version: 3.1.404
5+
displayName: Install .NET Core SDK 3.1.404
66

77
- task: UseDotNet@2
88
inputs:
9-
version: 3.1.401
10-
displayName: Install .NET Core SDK 3.1.401
9+
version: 5.0.101
10+
displayName: Install .NET Core SDK 5.0.101
1111

1212
- script: dotnet restore
1313
displayName: Restore packages

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.1.401"
3+
"version": "5.0.101"
44
}
55
}

src/coverlet.console/coverlet.console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.2</TargetFramework>
5+
<TargetFramework>net5.0</TargetFramework>
66
<ToolCommandName>coverlet</ToolCommandName>
77
<PackAsTool>true</PackAsTool>
88
<AssemblyTitle>coverlet.console</AssemblyTitle>

test/coverlet.collector.tests/coverlet.collector.tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="$(RepoRoot)src\coverlet.msbuild.tasks\coverlet.msbuild.props" />
33

44
<PropertyGroup>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net5.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

test/coverlet.core.performancetest/coverlet.core.performancetest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="$(RepoRoot)src\coverlet.msbuild.tasks\coverlet.msbuild.props" />
33

44
<PropertyGroup>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net5.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

test/coverlet.core.tests/coverlet.core.tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="$(RepoRoot)src\coverlet.msbuild.tasks\coverlet.msbuild.props" />
33

44
<PropertyGroup>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net5.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
<NoWarn>$(NoWarn);CS8002</NoWarn>
88
<!--For test TestInstrument_NetstandardAwareAssemblyResolver_PreserveCompilationContext-->
@@ -54,8 +54,8 @@
5454
</ItemGroup>
5555

5656
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
57-
<Exec Condition="$([MSBuild]::IsOSPlatform('Windows'))" Command="copy $(ProjectDir)..\coverlet.tests.projectsample.excludedbyattribute\$(OutDir) $(TargetDir)TestAssets /Y" />
58-
<Exec Condition="$([MSBuild]::IsOSPlatform('OSX')) OR $([MSBuild]::IsOSPlatform('Linux'))" Command="cp -r $(ProjectDir)..\coverlet.tests.projectsample.excludedbyattribute\$(OutDir). $(TargetDir)TestAssets" />
57+
<Exec Condition="$([MSBuild]::IsOSPlatform('Windows'))" Command="copy $(RepoRoot)test\coverlet.tests.projectsample.excludedbyattribute\$(OutDir) $(TargetDir)TestAssets /Y" />
58+
<Exec Condition="$([MSBuild]::IsOSPlatform('OSX')) OR $([MSBuild]::IsOSPlatform('Linux'))" Command="cp -r $(RepoRoot)test/coverlet.tests.projectsample.excludedbyattribute/$(OutDir). $(TargetDir)TestAssets" />
5959
</Target>
6060

6161
<Import Project="$(RepoRoot)src\coverlet.msbuild.tasks\coverlet.msbuild.targets" />

test/coverlet.integration.determisticbuild/coverlet.integration.determisticbuild.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$(MSBuildThisFileDirectory)\DeterministicTest.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
<TargetFramework>net5.0</TargetFramework>
77
<IsPackable>false</IsPackable>
88
<AssemblyName>coverletsample.integration.determisticbuild</AssemblyName>
99
<RestoreSources>

0 commit comments

Comments
 (0)