Skip to content

Commit

Permalink
netcoreapp3.0 -> netcoreapp3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsck committed Mar 8, 2020
1 parent 8e38432 commit 078beeb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion De4DotCommon.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<De4DotNetFramework Condition=" '$(SolutionName)' == 'de4dot.netframework' ">true</De4DotNetFramework>
<!-- Two different sln files are used because some of the projects are only available when targetting .NET Framework -->
<TargetFrameworks Condition=" '$(De4DotNetFramework)' == 'true' ">net35;net45</TargetFrameworks>
<TargetFrameworks Condition=" '$(De4DotNetFramework)' != 'true' ">netcoreapp3.0;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks Condition=" '$(De4DotNetFramework)' != 'true' ">netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
<Features>strict</Features>
<LangVersion>latest</LangVersion>
<SignAssembly>true</SignAssembly>
Expand Down
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 078beeb

Please sign in to comment.