WindowsXP/Source/XPSP1/NT/tools/managedkeyfile.pl
2024-08-03 16:30:48 +02:00

11 lines
305 B
Perl

$keyLocation = $ARGV[0];
print "using System;\r\n";
print "using System.Reflection;\r\n";
print "using System.Runtime;\r\n";
print "using System.Resources;\r\n";
print "\r\n";
print "[assembly: AssemblyKeyFileAttribute(@\"$keyLocation\")]\r\n";
print "[assembly: AssemblyDelaySignAttribute(true)]\r\n";