Browse Source

Work on #1824

pull/1847/head
Christoph Wille 6 years ago
parent
commit
1015c4ef4b
  1. 2
      ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
  2. 8
      azure-pipelines.yml
  3. 2
      global.json

2
ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<AssemblyName>ilspycmd</AssemblyName>

8
azure-pipelines.yml

@ -37,9 +37,13 @@ jobs: @@ -37,9 +37,13 @@ jobs:
- checkout: self
submodules: recursive
- task: DotNetCoreInstaller@0
- task: UseDotNet@2
displayName: 'Install .NET Core 3.1'
inputs:
version: '3.0.100'
packageType: sdk
version: '3.1.100'
installationPath: $(Agent.ToolsDirectory)/dotnet
- powershell: .\BuildTools\pipelines-install.ps1
displayName: Install

2
global.json

@ -3,6 +3,6 @@ @@ -3,6 +3,6 @@
"MSBuild.Sdk.Extras": "2.0.54"
},
"sdk": {
"version": "3.0.100"
"version": "3.1.100"
}
}

Loading…
Cancel
Save