Skip to content

Instantly share code, notes, and snippets.

@filipw
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filipw/52d44baad6a888569150 to your computer and use it in GitHub Desktop.
Save filipw/52d44baad6a888569150 to your computer and use it in GitHub Desktop.
remove strong name
//usage
//removeStrongName.exe <path_to_strong_named.dll>
using System;
using System.IO;
public class Program
{
public static void Main(string[] args)
{
var file = args[0];
if(File.Exists(file))
{
File.Delete(file);
Console.WriteLine("Successfully got rid of strong naming");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment