Browse Source

Update NuGet during testing on Mac

pull/925/merge
Christoph Wille 8 years ago
parent
commit
4916d8f74b
  1. 10
      DecompilerNuGetDemos.workbook
  2. 2
      ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
  3. 2
      ICSharpCode.Decompiler.PowerShell/ICSharpCode.Decompiler.PowerShell.csproj

10
DecompilerNuGetDemos.workbook

@ -6,7 +6,7 @@ platforms: @@ -6,7 +6,7 @@ platforms:
- DotNetCore
packages:
- id: ICSharpCode.Decompiler
version: 3.0.0.3214-beta1
version: 3.0.0.3246-beta1
---
Setup: load the references required to work with the decompiler
@ -19,6 +19,9 @@ using Mono.Cecil; @@ -19,6 +19,9 @@ using Mono.Cecil;
using ICSharpCode.Decompiler;
using ICSharpCode.Decompiler.CSharp;
using ICSharpCode.Decompiler.TypeSystem;
// Version sanity check
Console.WriteLine(typeof(FullTypeName).Assembly.GetName());
```
You must have compiled **frontends.sln** first (run “dotnet build” in ICSharpCode.Decompiler.PowerShell folder)
@ -58,4 +61,9 @@ If you need the Cecil ModuleDefinition @@ -58,4 +61,9 @@ If you need the Cecil ModuleDefinition
```csharp
ITypeDefinition type = decompiler.TypeSystem.Compilation.FindType(nameOfUniResolver).GetDefinition();
var module = decompiler.TypeSystem.GetCecil(type).Module
```
```csharp
#r "ICSharpCode.Decompiler"
#r "Mono.Cecil"
```

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

@ -8,8 +8,8 @@ @@ -8,8 +8,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3206-beta1" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.0.1" />
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3246-beta1" />
</ItemGroup>
</Project>

2
ICSharpCode.Decompiler.PowerShell/ICSharpCode.Decompiler.PowerShell.csproj

@ -7,8 +7,8 @@ @@ -7,8 +7,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3206-beta1" />
<PackageReference Include="PowerShellStandard.Library" Version="3.0.0-preview-01" />
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3246-beta1" />
</ItemGroup>
</Project>

Loading…
Cancel
Save