Browse Source

Update to AvalonEdit 6.0 RTM

Update AppVeyor script to no longer install netcore3 SDK (VS 16.3 includes that)
Set global.json to netcore3 RTM
pull/1714/head
Christoph Wille 6 years ago
parent
commit
1f3cb2c076
  1. 2
      ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj
  2. 2
      ILSpy/ILSpy.csproj
  3. 2
      appveyor.yml
  4. 2
      global.json

2
ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj

@ -37,7 +37,7 @@ @@ -37,7 +37,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="AvalonEdit" Version="6.0.0-rc1" />
<PackageReference Include="AvalonEdit" Version="6.0.0" />
</ItemGroup>
<ItemGroup>

2
ILSpy/ILSpy.csproj

@ -48,7 +48,7 @@ @@ -48,7 +48,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="AvalonEdit" Version="6.0.0-rc1" />
<PackageReference Include="AvalonEdit" Version="6.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Composition" Version="15.5.23" />
<PackageReference Include="Mono.Cecil" Version="0.10.3" />
<PackageReference Include="OSVersionHelper" Version="1.0.11" />

2
appveyor.yml

@ -7,7 +7,6 @@ configuration: @@ -7,7 +7,6 @@ configuration:
image: Visual Studio 2019
install:
- cmd: choco install dotnetcore-sdk --pre
- git submodule update --init --recursive
- ps: .\BuildTools\appveyor-install.ps1
@ -43,7 +42,6 @@ for: @@ -43,7 +42,6 @@ for:
- branches:
only:
- master
- 3.2.x
artifacts:
- path: ILSpy_binaries.zip
name: ILSpy %APPVEYOR_REPO_BRANCH% %ILSPY_VERSION_NUMBER% binaries

2
global.json

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

Loading…
Cancel
Save