Skip to content

Commit

Permalink
Bump to netcoreapp3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxuser committed Aug 10, 2020
1 parent 8ecfdda commit 9c18333
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DurangoKeyExtractor/DurangoKeyExtractor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NDesk.Options.Core" Version="1.2.4" />
Expand Down
2 changes: 1 addition & 1 deletion LibXboxOne.Tests/LibXboxOne.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion XBFSTool/XBFSTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NDesk.Options.Core" Version="1.2.4" />
Expand Down
2 changes: 1 addition & 1 deletion XVDTool/XVDTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NDesk.Options.Core" Version="1.2.4" />
Expand Down
2 changes: 1 addition & 1 deletion build_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mkdir release
# Publish builds
for proj in {XVDTool,XBFSTool,DurangoKeyExtractor}
do
dotnet publish $PUBLISH_ARGS -c Release -r $RID -f netcoreapp3.0 -o publish-$RID $proj --self-contained false
dotnet publish $PUBLISH_ARGS -c Release -r $RID -f netcoreapp3.1 -o publish-$RID $proj --self-contained false
done

# Bundle additional files
Expand Down

0 comments on commit 9c18333

Please sign in to comment.