├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── BinaryUtility.cs ├── LICENSE.md ├── Mono.Options └── Options.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── StrongNameResigner.csproj ├── StrongNameResigner.sln └── packages.config /.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | *.suo 3 | bin 4 | obj 5 | packages -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /BinaryUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/BinaryUtility.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Mono.Options/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/Mono.Options/Options.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/README.md -------------------------------------------------------------------------------- /StrongNameResigner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/StrongNameResigner.csproj -------------------------------------------------------------------------------- /StrongNameResigner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/StrongNameResigner.sln -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkirsche/StrongNameResigner/HEAD/packages.config --------------------------------------------------------------------------------