Skip to content

Commit b1b2dd1

Browse files
authored
Merge pull request #124 from sfoslund/ConvertingTo3.1
Updating to netcoreapp3.1
2 parents 5f50a65 + 4ddb198 commit b1b2dd1

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"tools": {
3-
"dotnet": "3.0.101"
3+
"dotnet": "3.1.102"
44
},
55
"msbuild-sdks": {
66
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.20113.5"

src/MSBuildBinLogQuery/MSBuildBinLogQuery.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<RootNamespace>Microsoft.Build.Logging.Query</RootNamespace>
66
<LangVersion>preview</LangVersion>
77
</PropertyGroup>

src/core-sdk-tasks/core-sdk-tasks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
55
<RootNamespace>Microsoft.DotNet.Cli.Build</RootNamespace>
66
</PropertyGroup>

src/dotnet-core-uninstall/dotnet-core-uninstall.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<RuntimeIdentifiers>win-x86;osx-x64</RuntimeIdentifiers>
66
<SignAssembly>true</SignAssembly>
7-
<TargetFramework>netcoreapp3.0</TargetFramework>
7+
<TargetFramework>netcoreapp3.1</TargetFramework>
88
</PropertyGroup>
99

1010
<PropertyGroup>

src/redist/redist.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
55
<CopyBuildOutputToPublishDirectory>false</CopyBuildOutputToPublishDirectory>
66
<DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences>

src/redist/targets/BuildCoreSdkTasks.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<CoreSdkTaskDll>$(ArtifactsDir)tasks\bin\core-sdk-tasks\$(Configuration)\netcoreapp3.0\core-sdk-tasks.dll</CoreSdkTaskDll>
3+
<CoreSdkTaskDll>$(ArtifactsDir)tasks\bin\core-sdk-tasks\$(Configuration)\netcoreapp3.1\core-sdk-tasks.dll</CoreSdkTaskDll>
44
<CoreSdkTaskProject>$(RepoRoot)src\core-sdk-tasks\core-sdk-tasks.csproj</CoreSdkTaskProject>
55
</PropertyGroup>
66

test/MSBuildBinLogQuery.Tests/MSBuildBinLogQuery.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

test/dotnet-core-uninstall.Tests/dotnet-core-uninstall.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
</PropertyGroup>
55

66
<ItemGroup>

0 commit comments

Comments
 (0)