Skip to content

PaGr0m/dotnet-assembly-changes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple .NET assembly changer

This program converts the original .NET assembly, replacing all addition operations (OpCodes.Add) with subtraction operations (OpCodes.Sub), using the Mono.Cecil library. The resulting assembly is saved to the new path.

Solutions

Usage

Run from project root directory:

$ dotnet run --project ./AssemblyChanges/AssemblyChanges/AssemblyChanges.csproj -- pathToAssembly pathToNewDirectory

Run from build directory with assembly:

$ dotnet AssemblyChanges.dll -- pathToAssembly pathToNewDirectory

NOTE: when passing a file as the second argument (not a directory), then the resulting directory will be selected.

About

Simple application using the Mono.Cecil library

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages