diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16c650874..766e9b5a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,5 +33,5 @@ jobs: - uses: actions/upload-artifact@v1 with: - name: de4dot-netcoreapp3.0 - path: publish-netcoreapp3.0 + name: de4dot-netcoreapp3.1 + path: publish-netcoreapp3.1 diff --git a/De4DotCommon.props b/De4DotCommon.props index 0f8a28727..4182ed2ec 100644 --- a/De4DotCommon.props +++ b/De4DotCommon.props @@ -5,7 +5,7 @@ true net35;net45 - netcoreapp3.0;netcoreapp2.1 + netcoreapp3.1;netcoreapp2.1 strict latest true diff --git a/build.ps1 b/build.ps1 index 7c0e256e8..0dbdb15de 100644 --- a/build.ps1 +++ b/build.ps1 @@ -16,6 +16,6 @@ dotnet publish -c Release -f netcoreapp2.1 -o publish-netcoreapp2.1 de4dot if ($LASTEXITCODE) { exit $LASTEXITCODE } Remove-Item publish-netcoreapp2.1\*.pdb, publish-netcoreapp2.1\*.xml -dotnet publish -c Release -f netcoreapp3.0 -o publish-netcoreapp3.0 de4dot +dotnet publish -c Release -f netcoreapp3.1 -o publish-netcoreapp3.1 de4dot if ($LASTEXITCODE) { exit $LASTEXITCODE } -Remove-Item publish-netcoreapp3.0\*.pdb, publish-netcoreapp3.0\*.xml +Remove-Item publish-netcoreapp3.1\*.pdb, publish-netcoreapp3.1\*.xml