Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -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
20 changes: 7 additions & 13 deletions InjectModuleInitializer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8B2B6640-191B-4733-8243-5A4270162F86}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>EinarEgilsson.Utilities.InjectModuleInitializer</RootNamespace>
<AssemblyName>InjectModuleInitializer</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<StartupObject>EinarEgilsson.Utilities.InjectModuleInitializer.Program</StartupObject>
<SignAssembly Condition="Exists('$(PrivateKeys)\EinarEgilssonStrongName.snk')">true</SignAssembly>
Expand Down Expand Up @@ -59,21 +58,16 @@
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Cecil, Version=0.9.1.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\Mono.Cecil.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Mono.Cecil.Pdb, Version=0.9.1.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<Reference Include="System" />
<Reference Include="Mono.Cecil.Pdb">
<HintPath>lib\Mono.Cecil.Pdb.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="nunit.framework, Version=2.5.9.10348, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<Reference Include="nunit.framework">
<HintPath>lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="Mono.Cecil">
<HintPath>lib\Mono.Cecil.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Errors.cs" />
Expand Down
21 changes: 12 additions & 9 deletions Injector.cs
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -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
Expand Down
Binary file modified lib/Mono.Cecil.Pdb.dll
Binary file not shown.
Binary file modified lib/Mono.Cecil.dll
Binary file not shown.