Browse Source

Update McMaster.Extensions.CommandLineUtils to latest

pull/2566/head
Christoph Wille 4 years ago
parent
commit
2e5411732a
  1. 11
      .github/workflows/build-frontends.yml
  2. 2
      ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj

11
.github/workflows/build-frontends.yml

@ -19,8 +19,19 @@ jobs: @@ -19,8 +19,19 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore ILSpy.XPlat.slnf
- name: Build
run: dotnet build ILSpy.XPlat.slnf --configuration Debug --no-restore
- name: Pack ilspycmd
run: dotnet pack ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj --configuration Release --no-restore
- name: Upload ilspycmd
uses: actions/upload-artifact@v2
with:
name: ilspycmd NuGet Package
path: ICSharpCode.Decompiler.Console/bin/Release/ilspycmd*.nupkg
if-no-files-found: error

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

@ -46,7 +46,7 @@ @@ -46,7 +46,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.2" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
<PackageReference Include="System.Runtime.Handles" Version="4.3.0" />
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" />

Loading…
Cancel
Save