Skip to content

Commit 9c18333

Browse files
committed
Bump to netcoreapp3.1
1 parent 8ecfdda commit 9c18333

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

DurangoKeyExtractor/DurangoKeyExtractor.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>netcoreapp3.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="NDesk.Options.Core" Version="1.2.4" />

LibXboxOne.Tests/LibXboxOne.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
<IsTestProject>true</IsTestProject>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

XBFSTool/XBFSTool.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>netcoreapp3.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="NDesk.Options.Core" Version="1.2.4" />

XVDTool/XVDTool.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>netcoreapp3.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="NDesk.Options.Core" Version="1.2.4" />

build_release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mkdir release
2525
# Publish builds
2626
for proj in {XVDTool,XBFSTool,DurangoKeyExtractor}
2727
do
28-
dotnet publish $PUBLISH_ARGS -c Release -r $RID -f netcoreapp3.0 -o publish-$RID $proj --self-contained false
28+
dotnet publish $PUBLISH_ARGS -c Release -r $RID -f netcoreapp3.1 -o publish-$RID $proj --self-contained false
2929
done
3030

3131
# Bundle additional files

0 commit comments

Comments
 (0)