From 6c1efaa2d78d8d36d09b0f1baa006f371708dcc6 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sat, 7 May 2016 22:51:50 +0900 Subject: [PATCH] use mono.cecil nuget-package in all projects instead of git sub-module --- ICSharpCode.Decompiler/Ast/AstBuilder.cs | 14 +++++------ .../ICSharpCode.Decompiler.csproj | 6 +++-- ICSharpCode.Decompiler/ILAst/TypeAnalysis.cs | 14 +++++------ .../Tests/ICSharpCode.Decompiler.Tests.csproj | 16 ++++++------- ICSharpCode.Decompiler/Tests/packages.config | 1 + ICSharpCode.Decompiler/packages.config | 2 +- ILSpy.AddIn/ILSpy.AddIn.csproj | 16 ++++++------- ILSpy.AddIn/packages.config | 1 + .../ILSpy.BamlDecompiler.csproj | 10 ++++---- .../Tests/ILSpy.BamlDecompiler.Tests.csproj | 12 ++++++---- ILSpy.BamlDecompiler/Tests/packages.config | 4 ++++ ILSpy.BamlDecompiler/packages.config | 4 ++++ ILSpy.sln | 24 ++----------------- ILSpy/ILSpy.csproj | 17 ++++++------- ILSpy/packages.config | 4 ++++ TestPlugin/TestPlugin.csproj | 9 +++---- TestPlugin/packages.config | 4 ++++ cecil | 1 - 18 files changed, 81 insertions(+), 78 deletions(-) create mode 100644 ILSpy.BamlDecompiler/Tests/packages.config create mode 100644 ILSpy.BamlDecompiler/packages.config create mode 100644 ILSpy/packages.config create mode 100644 TestPlugin/packages.config delete mode 160000 cecil diff --git a/ICSharpCode.Decompiler/Ast/AstBuilder.cs b/ICSharpCode.Decompiler/Ast/AstBuilder.cs index aa97dc9bf..43e278c47 100644 --- a/ICSharpCode.Decompiler/Ast/AstBuilder.cs +++ b/ICSharpCode.Decompiler/Ast/AstBuilder.cs @@ -181,7 +181,7 @@ namespace ICSharpCode.Decompiler.Ast Type = new SimpleType("AssemblyVersion") .WithAnnotation(new TypeReference( "System.Reflection", "AssemblyVersionAttribute", - moduleDefinition, moduleDefinition.TypeSystem.CoreLibrary)), + moduleDefinition, moduleDefinition.TypeSystem.Corlib)), Arguments = { new PrimitiveExpression(moduleDefinition.Assembly.Name.Version.ToString()) } @@ -225,7 +225,7 @@ namespace ICSharpCode.Decompiler.Ast Type = new SimpleType("TypeForwardedTo") .WithAnnotation(new TypeReference( "System.Runtime.CompilerServices", "TypeForwardedToAttribute", - module, module.TypeSystem.CoreLibrary)), + module, module.TypeSystem.Corlib)), Arguments = { forwardedType } } } @@ -1264,7 +1264,7 @@ namespace ICSharpCode.Decompiler.Ast Ast.Attribute methodImpl = CreateNonCustomAttribute(typeof(MethodImplAttribute)); TypeReference methodImplOptions = new TypeReference( "System.Runtime.CompilerServices", "MethodImplOptions", - methodDefinition.Module, methodDefinition.Module.TypeSystem.CoreLibrary); + methodDefinition.Module, methodDefinition.Module.TypeSystem.Corlib); methodImpl.Arguments.Add(MakePrimitive((long)implAttributes, methodImplOptions)); attributedNode.Attributes.Add(new AttributeSection(methodImpl)); } @@ -1311,7 +1311,7 @@ namespace ICSharpCode.Decompiler.Ast { MarshalInfo marshalInfo = marshalInfoProvider.MarshalInfo; Ast.Attribute attr = CreateNonCustomAttribute(typeof(MarshalAsAttribute), module); - var unmanagedType = new TypeReference("System.Runtime.InteropServices", "UnmanagedType", module, module.TypeSystem.CoreLibrary); + var unmanagedType = new TypeReference("System.Runtime.InteropServices", "UnmanagedType", module, module.TypeSystem.Corlib); attr.Arguments.Add(MakePrimitive((int)marshalInfo.NativeType, unmanagedType)); FixedArrayMarshalInfo fami = marshalInfo as FixedArrayMarshalInfo; @@ -1322,7 +1322,7 @@ namespace ICSharpCode.Decompiler.Ast } SafeArrayMarshalInfo sami = marshalInfo as SafeArrayMarshalInfo; if (sami != null && sami.ElementType != VariantType.None) { - var varEnum = new TypeReference("System.Runtime.InteropServices", "VarEnum", module, module.TypeSystem.CoreLibrary); + var varEnum = new TypeReference("System.Runtime.InteropServices", "VarEnum", module, module.TypeSystem.Corlib); attr.AddNamedArgument("SafeArraySubType", MakePrimitive((int)sami.ElementType, varEnum)); } ArrayMarshalInfo ami = marshalInfo as ArrayMarshalInfo; @@ -1359,7 +1359,7 @@ namespace ICSharpCode.Decompiler.Ast Ast.Attribute attr = new Ast.Attribute(); attr.Type = new SimpleType(attributeType.Name.Substring(0, attributeType.Name.Length - "Attribute".Length)); if (module != null) { - attr.Type.AddAnnotation(new TypeReference(attributeType.Namespace, attributeType.Name, module, module.TypeSystem.CoreLibrary)); + attr.Type.AddAnnotation(new TypeReference(attributeType.Namespace, attributeType.Name, module, module.TypeSystem.Corlib)); } return attr; } @@ -1461,7 +1461,7 @@ namespace ICSharpCode.Decompiler.Ast } var module = secAttribute.AttributeType.Module; - var securityActionType = new TypeReference("System.Security.Permissions", "SecurityAction", module, module.TypeSystem.CoreLibrary); + var securityActionType = new TypeReference("System.Security.Permissions", "SecurityAction", module, module.TypeSystem.Corlib); attribute.Arguments.Add(MakePrimitive((int)secDecl.Action, securityActionType)); if (secAttribute.HasProperties) { diff --git a/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj b/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj index 99b6693f0..b0bdda4a1 100644 --- a/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj +++ b/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj @@ -51,8 +51,9 @@ ..\packages\ICSharpCode.NRefactory.5.5.1\lib\Net40\ICSharpCode.NRefactory.CSharp.dll - - ..\packages\Mono.Cecil.0.9.5.4\lib\net40\Mono.Cecil.dll + + ..\packages\Mono.Cecil.0.9.6.1\lib\net40\Mono.Cecil.dll + True @@ -136,6 +137,7 @@ + diff --git a/ICSharpCode.Decompiler/ILAst/TypeAnalysis.cs b/ICSharpCode.Decompiler/ILAst/TypeAnalysis.cs index f1e47f3d2..a507ebcc2 100644 --- a/ICSharpCode.Decompiler/ILAst/TypeAnalysis.cs +++ b/ICSharpCode.Decompiler/ILAst/TypeAnalysis.cs @@ -478,7 +478,7 @@ namespace ICSharpCode.Decompiler.ILAst if (forceInferChildren) { InferTypeForExpression(expr.Arguments[0], typeSystem.TypedReference); } - return new TypeReference("System", "RuntimeTypeHandle", module, module.TypeSystem.CoreLibrary, true); + return new TypeReference("System", "RuntimeTypeHandle", module, module.TypeSystem.Corlib, true); case ILCode.Refanyval: if (forceInferChildren) { InferTypeForExpression(expr.Arguments[0], typeSystem.TypedReference); @@ -607,16 +607,16 @@ namespace ICSharpCode.Decompiler.ILAst case ILCode.Ldc_R8: return typeSystem.Double; case ILCode.Ldc_Decimal: - return new TypeReference("System", "Decimal", module, module.TypeSystem.CoreLibrary, true); + return new TypeReference("System", "Decimal", module, module.TypeSystem.Corlib, true); case ILCode.Ldtoken: if (expr.Operand is TypeReference) - return new TypeReference("System", "RuntimeTypeHandle", module, module.TypeSystem.CoreLibrary, true); + return new TypeReference("System", "RuntimeTypeHandle", module, module.TypeSystem.Corlib, true); else if (expr.Operand is FieldReference) - return new TypeReference("System", "RuntimeFieldHandle", module, module.TypeSystem.CoreLibrary, true); + return new TypeReference("System", "RuntimeFieldHandle", module, module.TypeSystem.Corlib, true); else - return new TypeReference("System", "RuntimeMethodHandle", module, module.TypeSystem.CoreLibrary, true); + return new TypeReference("System", "RuntimeMethodHandle", module, module.TypeSystem.Corlib, true); case ILCode.Arglist: - return new TypeReference("System", "RuntimeArgumentHandle", module, module.TypeSystem.CoreLibrary, true); + return new TypeReference("System", "RuntimeArgumentHandle", module, module.TypeSystem.Corlib, true); #endregion #region Array instructions case ILCode.Newarr: @@ -996,7 +996,7 @@ namespace ICSharpCode.Decompiler.ILAst GenericInstanceType CreateNullableType(TypeReference type) { if (type == null) return null; - var t = new GenericInstanceType(new TypeReference("System", "Nullable`1", module, module.TypeSystem.CoreLibrary, true)); + var t = new GenericInstanceType(new TypeReference("System", "Nullable`1", module, module.TypeSystem.Corlib, true)); t.GenericArguments.Add(type); return t; } diff --git a/ICSharpCode.Decompiler/Tests/ICSharpCode.Decompiler.Tests.csproj b/ICSharpCode.Decompiler/Tests/ICSharpCode.Decompiler.Tests.csproj index 4212a76b6..e8abd4d80 100644 --- a/ICSharpCode.Decompiler/Tests/ICSharpCode.Decompiler.Tests.csproj +++ b/ICSharpCode.Decompiler/Tests/ICSharpCode.Decompiler.Tests.csproj @@ -49,6 +49,14 @@ ..\..\packages\DiffLib.1.0.0.55\lib\net35-Client\DiffLib.dll + + ..\..\packages\Mono.Cecil.0.9.6.1\lib\net45\Mono.Cecil.dll + True + + + ..\..\packages\Mono.Cecil.0.9.6.1\lib\net45\Mono.Cecil.Pdb.dll + True + ..\..\packages\NUnitTestAdapter.2.0.0\lib\nunit.core.dll False @@ -133,14 +141,6 @@ - - {d68133bd-1e63-496e-9ede-4fbdbf77b486} - Mono.Cecil - - - {63e6915c-7ea4-4d76-ab28-0d7191eea626} - Mono.Cecil.Pdb - {53dca265-3c3c-42f9-b647-f72ba678122b} ICSharpCode.NRefactory.CSharp diff --git a/ICSharpCode.Decompiler/Tests/packages.config b/ICSharpCode.Decompiler/Tests/packages.config index 44cab4495..6f1df3357 100644 --- a/ICSharpCode.Decompiler/Tests/packages.config +++ b/ICSharpCode.Decompiler/Tests/packages.config @@ -1,5 +1,6 @@  + \ No newline at end of file diff --git a/ICSharpCode.Decompiler/packages.config b/ICSharpCode.Decompiler/packages.config index ade7de76c..05339f37a 100644 --- a/ICSharpCode.Decompiler/packages.config +++ b/ICSharpCode.Decompiler/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/ILSpy.AddIn/ILSpy.AddIn.csproj b/ILSpy.AddIn/ILSpy.AddIn.csproj index b56546a98..54e40e24e 100644 --- a/ILSpy.AddIn/ILSpy.AddIn.csproj +++ b/ILSpy.AddIn/ILSpy.AddIn.csproj @@ -91,6 +91,14 @@ False ..\packages\VSSDK.TextManager.Interop.8.8.0.3\lib\net20\Microsoft.VisualStudio.TextManager.Interop.8.0.dll + + ..\packages\Mono.Cecil.0.9.6.1\lib\net40\Mono.Cecil.dll + True + + + ..\packages\Mono.Cecil.0.9.6.1\lib\net40\Mono.Cecil.Pdb.dll + True + @@ -208,14 +216,6 @@ {1e85eff9-e370-4683-83e4-8a3d063ff791} ILSpy - - {d68133bd-1e63-496e-9ede-4fbdbf77b486} - Mono.Cecil - - - {63e6915c-7ea4-4d76-ab28-0d7191eea626} - Mono.Cecil.Pdb - {53dca265-3c3c-42f9-b647-f72ba678122b} ICSharpCode.NRefactory.CSharp diff --git a/ILSpy.AddIn/packages.config b/ILSpy.AddIn/packages.config index 14a098365..41f80f5a4 100644 --- a/ILSpy.AddIn/packages.config +++ b/ILSpy.AddIn/packages.config @@ -1,5 +1,6 @@  + diff --git a/ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj b/ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj index 2abd844e5..2d9565d5a 100644 --- a/ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj +++ b/ILSpy.BamlDecompiler/ILSpy.BamlDecompiler.csproj @@ -44,6 +44,10 @@ TRACE + + ..\packages\Mono.Cecil.0.9.6.1\lib\net40\Mono.Cecil.dll + True + 3.0 @@ -115,11 +119,6 @@ ILSpy False - - {d68133bd-1e63-496e-9ede-4fbdbf77b486} - Mono.Cecil - False - {dde2a481-8271-4eac-a330-8fa6a38d13d1} ICSharpCode.TreeView @@ -127,6 +126,7 @@ + diff --git a/ILSpy.BamlDecompiler/Tests/ILSpy.BamlDecompiler.Tests.csproj b/ILSpy.BamlDecompiler/Tests/ILSpy.BamlDecompiler.Tests.csproj index 938d0ab27..46524b825 100644 --- a/ILSpy.BamlDecompiler/Tests/ILSpy.BamlDecompiler.Tests.csproj +++ b/ILSpy.BamlDecompiler/Tests/ILSpy.BamlDecompiler.Tests.csproj @@ -45,6 +45,10 @@ ..\..\packages\DiffLib.1.0.0.55\lib\net35-Client\DiffLib.dll + + ..\..\packages\Mono.Cecil.0.9.6.1\lib\net45\Mono.Cecil.dll + True + ..\..\ICSharpCode.Decompiler\Tests\nunit.framework.dll @@ -104,10 +108,6 @@ {1e85eff9-e370-4683-83e4-8a3d063ff791} ILSpy - - {d68133bd-1e63-496e-9ede-4fbdbf77b486} - Mono.Cecil - {dde2a481-8271-4eac-a330-8fa6a38d13d1} ICSharpCode.TreeView @@ -117,7 +117,9 @@ ILSpy.BamlDecompiler - + + + diff --git a/ILSpy.BamlDecompiler/Tests/packages.config b/ILSpy.BamlDecompiler/Tests/packages.config new file mode 100644 index 000000000..e304cab94 --- /dev/null +++ b/ILSpy.BamlDecompiler/Tests/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/ILSpy.BamlDecompiler/packages.config b/ILSpy.BamlDecompiler/packages.config new file mode 100644 index 000000000..d1ba75150 --- /dev/null +++ b/ILSpy.BamlDecompiler/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/ILSpy.sln b/ILSpy.sln index dad0c93a0..09a5c323a 100644 --- a/ILSpy.sln +++ b/ILSpy.sln @@ -1,8 +1,8 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 14 # SharpDevelop 5.1 -VisualStudioVersion = 14.0.24720.0 +VisualStudioVersion = 14.0.25123.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "doc", "doc", "{F45DB999-7E72-4000-B5AD-3A7B485A0896}" ProjectSection(SolutionItems) = preProject @@ -13,8 +13,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILSpy", "ILSpy\ILSpy.csproj EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.TreeView", "SharpTreeView\ICSharpCode.TreeView.csproj", "{DDE2A481-8271-4EAC-A330-8FA6A38D13D1}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mono.Cecil", "cecil\Mono.Cecil.csproj", "{D68133BD-1E63-496E-9EDE-4FBDBF77B486}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.AvalonEdit", "AvalonEdit\ICSharpCode.AvalonEdit\ICSharpCode.AvalonEdit.csproj", "{6C55B776-26D4-4DB3-A6AB-87E783B2F3D1}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.Decompiler", "ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj", "{984CC812-9470-4A13-AFF9-CC44068D666C}" @@ -25,8 +23,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.Decompiler.Test EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestPlugin", "TestPlugin\TestPlugin.csproj", "{F32EBCC8-0E53-4421-867E-05B3D6E10C70}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mono.Cecil.Pdb", "cecil\symbols\pdb\Mono.Cecil.Pdb.csproj", "{63E6915C-7EA4-4D76-AB28-0D7191EEA626}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILSpy.BamlDecompiler", "ILSpy.BamlDecompiler\ILSpy.BamlDecompiler.csproj", "{A6BAD2BA-76BA-461C-8B6D-418607591247}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILSpy.BamlDecompiler.Tests", "ILSpy.BamlDecompiler\Tests\ILSpy.BamlDecompiler.Tests.csproj", "{1169E6D1-1899-43D4-A500-07CE4235B388}" @@ -68,14 +64,6 @@ Global {DDE2A481-8271-4EAC-A330-8FA6A38D13D1}.Release|Any CPU.Build.0 = Release|Any CPU {DDE2A481-8271-4EAC-A330-8FA6A38D13D1}.Release|x86.ActiveCfg = Release|Any CPU {DDE2A481-8271-4EAC-A330-8FA6A38D13D1}.Release|x86.Build.0 = Release|Any CPU - {D68133BD-1E63-496E-9EDE-4FBDBF77B486}.Debug|Any CPU.ActiveCfg = net_4_0_Debug|Any CPU - {D68133BD-1E63-496E-9EDE-4FBDBF77B486}.Debug|Any CPU.Build.0 = net_4_0_Debug|Any CPU - {D68133BD-1E63-496E-9EDE-4FBDBF77B486}.Debug|x86.ActiveCfg = net_4_0_Debug|Any CPU - {D68133BD-1E63-496E-9EDE-4FBDBF77B486}.Debug|x86.Build.0 = net_4_0_Debug|Any CPU - {D68133BD-1E63-496E-9EDE-4FBDBF77B486}.Release|Any CPU.ActiveCfg = net_4_0_Release|Any CPU - {D68133BD-1E63-496E-9EDE-4FBDBF77B486}.Release|Any CPU.Build.0 = net_4_0_Release|Any CPU - {D68133BD-1E63-496E-9EDE-4FBDBF77B486}.Release|x86.ActiveCfg = net_4_0_Release|Any CPU - {D68133BD-1E63-496E-9EDE-4FBDBF77B486}.Release|x86.Build.0 = net_4_0_Release|Any CPU {6C55B776-26D4-4DB3-A6AB-87E783B2F3D1}.Debug|Any CPU.ActiveCfg = Debug|Net40 {6C55B776-26D4-4DB3-A6AB-87E783B2F3D1}.Debug|Any CPU.Build.0 = Debug|Net40 {6C55B776-26D4-4DB3-A6AB-87E783B2F3D1}.Debug|x86.ActiveCfg = Debug|Net40 @@ -116,14 +104,6 @@ Global {F32EBCC8-0E53-4421-867E-05B3D6E10C70}.Release|Any CPU.Build.0 = Release|Any CPU {F32EBCC8-0E53-4421-867E-05B3D6E10C70}.Release|x86.ActiveCfg = Release|Any CPU {F32EBCC8-0E53-4421-867E-05B3D6E10C70}.Release|x86.Build.0 = Release|Any CPU - {63E6915C-7EA4-4D76-AB28-0D7191EEA626}.Debug|Any CPU.ActiveCfg = net_4_0_Debug|Any CPU - {63E6915C-7EA4-4D76-AB28-0D7191EEA626}.Debug|Any CPU.Build.0 = net_4_0_Debug|Any CPU - {63E6915C-7EA4-4D76-AB28-0D7191EEA626}.Debug|x86.ActiveCfg = net_4_0_Debug|Any CPU - {63E6915C-7EA4-4D76-AB28-0D7191EEA626}.Debug|x86.Build.0 = net_4_0_Debug|Any CPU - {63E6915C-7EA4-4D76-AB28-0D7191EEA626}.Release|Any CPU.ActiveCfg = net_4_0_Release|Any CPU - {63E6915C-7EA4-4D76-AB28-0D7191EEA626}.Release|Any CPU.Build.0 = net_4_0_Release|Any CPU - {63E6915C-7EA4-4D76-AB28-0D7191EEA626}.Release|x86.ActiveCfg = net_4_0_Release|Any CPU - {63E6915C-7EA4-4D76-AB28-0D7191EEA626}.Release|x86.Build.0 = net_4_0_Release|Any CPU {A6BAD2BA-76BA-461C-8B6D-418607591247}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A6BAD2BA-76BA-461C-8B6D-418607591247}.Debug|Any CPU.Build.0 = Debug|Any CPU {A6BAD2BA-76BA-461C-8B6D-418607591247}.Debug|x86.ActiveCfg = Debug|x86 diff --git a/ILSpy/ILSpy.csproj b/ILSpy/ILSpy.csproj index 243e2275a..ff56806d4 100644 --- a/ILSpy/ILSpy.csproj +++ b/ILSpy/ILSpy.csproj @@ -55,6 +55,14 @@ TRACE + + ..\packages\Mono.Cecil.0.9.6.1\lib\net40\Mono.Cecil.dll + True + + + ..\packages\Mono.Cecil.0.9.6.1\lib\net40\Mono.Cecil.Pdb.dll + True + 3.0 @@ -254,6 +262,7 @@ + @@ -371,18 +380,10 @@ {984cc812-9470-4a13-aff9-cc44068d666c} ICSharpCode.Decompiler - - {d68133bd-1e63-496e-9ede-4fbdbf77b486} - Mono.Cecil - {6c55b776-26d4-4db3-a6ab-87e783b2f3d1} ICSharpCode.AvalonEdit - - {63e6915c-7ea4-4d76-ab28-0d7191eea626} - Mono.Cecil.Pdb - {7b82b671-419f-45f4-b778-d9286f996efa} ICSharpCode.NRefactory.VB diff --git a/ILSpy/packages.config b/ILSpy/packages.config new file mode 100644 index 000000000..d1ba75150 --- /dev/null +++ b/ILSpy/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/TestPlugin/TestPlugin.csproj b/TestPlugin/TestPlugin.csproj index 38230e7a8..e6b5a5da0 100644 --- a/TestPlugin/TestPlugin.csproj +++ b/TestPlugin/TestPlugin.csproj @@ -43,6 +43,10 @@ bin\Release\ILSpy.exe + + ..\packages\Mono.Cecil.0.9.6.1\lib\net40\Mono.Cecil.dll + True + 3.0 @@ -79,6 +83,7 @@ + @@ -90,10 +95,6 @@ {1e85eff9-e370-4683-83e4-8a3d063ff791} ILSpy - - {d68133bd-1e63-496e-9ede-4fbdbf77b486} - Mono.Cecil - {53dca265-3c3c-42f9-b647-f72ba678122b} ICSharpCode.NRefactory.CSharp diff --git a/TestPlugin/packages.config b/TestPlugin/packages.config new file mode 100644 index 000000000..c1fcbe062 --- /dev/null +++ b/TestPlugin/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/cecil b/cecil deleted file mode 160000 index 53df0bc39..000000000 --- a/cecil +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 53df0bc39e48d8544020856e83f8d8a2e11c8a3a