diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 2ad626c..397193b 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -7,3 +7,7 @@ for fixing a command line parsing error Brian Fresen https://github.com/bfriesen for creating the NuGet package. + +Jay Guadagnoli https://github.com/jguady + +Updated to Mono.Cecil 0.9.5.0 \ No newline at end of file diff --git a/InjectModuleInitializer.csproj b/InjectModuleInitializer.csproj index 56c51d9..2a3de0b 100644 --- a/InjectModuleInitializer.csproj +++ b/InjectModuleInitializer.csproj @@ -3,14 +3,13 @@ Debug AnyCPU - 9.0.30729 + 8.0.30703 2.0 {8B2B6640-191B-4733-8243-5A4270162F86} Exe Properties EinarEgilsson.Utilities.InjectModuleInitializer InjectModuleInitializer - v2.0 512 EinarEgilsson.Utilities.InjectModuleInitializer.Program true @@ -59,21 +58,16 @@ AllRules.ruleset - - False - lib\Mono.Cecil.dll - False - - - False + + lib\Mono.Cecil.Pdb.dll - False - - False + lib\nunit.framework.dll - + + lib\Mono.Cecil.dll + diff --git a/Injector.cs b/Injector.cs index 8ef7759..77ca624 100644 --- a/Injector.cs +++ b/Injector.cs @@ -1,12 +1,12 @@ -/* -InjectModuleInitializer - -Command line program to inject a module initializer into a .NET assembly. - -Copyright (C) 2009-2012 Einar Egilsson -http://einaregilsson.com/module-initializers-in-csharp/ - -This program is licensed under the MIT license: http://opensource.org/licenses/MIT +/* +InjectModuleInitializer + +Command line program to inject a module initializer into a .NET assembly. + +Copyright (C) 2009-2012 Einar Egilsson +http://einaregilsson.com/module-initializers-in-csharp/ + +This program is licensed under the MIT license: http://opensource.org/licenses/MIT */ using System; using System.Diagnostics; @@ -18,6 +18,9 @@ Command line program to inject a module initializer into a .NET assembly. using Mono.Collections.Generic; using MethodAttributes = Mono.Cecil.MethodAttributes; + + + namespace EinarEgilsson.Utilities.InjectModuleInitializer { public class InjectionException : Exception diff --git a/lib/Mono.Cecil.Pdb.dll b/lib/Mono.Cecil.Pdb.dll index 41ed3a0..44faa6c 100644 Binary files a/lib/Mono.Cecil.Pdb.dll and b/lib/Mono.Cecil.Pdb.dll differ diff --git a/lib/Mono.Cecil.dll b/lib/Mono.Cecil.dll index 6ba3faf..276a48c 100644 Binary files a/lib/Mono.Cecil.dll and b/lib/Mono.Cecil.dll differ