Skip to content

Commit 078beeb

Browse files
committedMar 8, 2020
netcoreapp3.0 -> netcoreapp3.1
1 parent 8e38432 commit 078beeb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333

3434
- uses: actions/upload-artifact@v1
3535
with:
36-
name: de4dot-netcoreapp3.0
37-
path: publish-netcoreapp3.0
36+
name: de4dot-netcoreapp3.1
37+
path: publish-netcoreapp3.1

‎De4DotCommon.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<De4DotNetFramework Condition=" '$(SolutionName)' == 'de4dot.netframework' ">true</De4DotNetFramework>
66
<!-- Two different sln files are used because some of the projects are only available when targetting .NET Framework -->
77
<TargetFrameworks Condition=" '$(De4DotNetFramework)' == 'true' ">net35;net45</TargetFrameworks>
8-
<TargetFrameworks Condition=" '$(De4DotNetFramework)' != 'true' ">netcoreapp3.0;netcoreapp2.1</TargetFrameworks>
8+
<TargetFrameworks Condition=" '$(De4DotNetFramework)' != 'true' ">netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
99
<Features>strict</Features>
1010
<LangVersion>latest</LangVersion>
1111
<SignAssembly>true</SignAssembly>

‎build.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ dotnet publish -c Release -f netcoreapp2.1 -o publish-netcoreapp2.1 de4dot
1616
if ($LASTEXITCODE) { exit $LASTEXITCODE }
1717
Remove-Item publish-netcoreapp2.1\*.pdb, publish-netcoreapp2.1\*.xml
1818

19-
dotnet publish -c Release -f netcoreapp3.0 -o publish-netcoreapp3.0 de4dot
19+
dotnet publish -c Release -f netcoreapp3.1 -o publish-netcoreapp3.1 de4dot
2020
if ($LASTEXITCODE) { exit $LASTEXITCODE }
21-
Remove-Item publish-netcoreapp3.0\*.pdb, publish-netcoreapp3.0\*.xml
21+
Remove-Item publish-netcoreapp3.1\*.pdb, publish-netcoreapp3.1\*.xml

0 commit comments

Comments
 (0)
Please sign in to comment.