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 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework> <TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<IsPackable>true</IsPackable> <IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool> <PackAsTool>true</PackAsTool>
<AssemblyName>ilspycmd</AssemblyName> <AssemblyName>ilspycmd</AssemblyName>

8
azure-pipelines.yml

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

2
global.json

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

Loading…
Cancel
Save