Ok! It turns out that the project I was working on previously about the .NET assembly comparison; it wasn't a compare on one or two .exes or .dlls but to compare about 200 assemblies. *GiAiAiAH* Yeah! That means I gotta do this for approximately 200 times?! *That's Totally iNSaNe!*
But then, before you say, "What's the big deal? You can write a C# program wot?" I would like to assure you that I have thought about that as well, but then, I felt that writing a C# program just to do all that is too overkill. So, I have decided to use a much simpler and traditional approach instead - DOS!
Here's how I did it. To produce the MSIL, I ran the following once in each of the source and target folder:
for %i in (*.dll) do ildasm %i /out=c:\output\source\%i.il
I substituted c:\output\source with c:\output\target for the target assemblies. If your assemblies are executables, replace the *.dll with .exe.
To compare the files, I simply typed:
for %i in (*.il) do fc c:\output\source\%i c:\output\target\%i > c:\output\results\%i.txt
That's It! Cool huh?
Popular Post
-
Think Global, the Norwegian electric car maker, has halted production of its electric City car, generating fears of a possible bankruptcy. ...
-
One of my favorite book is Erasure by Percival Everett. In it, a struggling, black literary writer (is there any other kind?) is so frustra...
-
Time: 6:50 a.m. Temperature: 46 degrees Meal: Biscuit and coffee Goal: To read through chapters, highlighting clunky and passive language. W...
-
As the cliche goes: I am over the Moon! And! And! You don't even need the Kindle device to read it. Go to the book's page on Amazon...
-
One of the proposals that Ferrari didn't liked... I have LOTS of them in fact.
-
S8 / 6.876 cc / 265 PS / 374 ft/lb (507 Nm) @ 2.000 / Vmax: 116 mph (187 km/h) (click images for a larger view)
-
The Original 1996 VW Golf Harlequin Art Car photo via A 1996 Volkswagen magazine ad said, “Can’t decide on a color? Try a Harlequin Golf.” T...
-
This is sweet, nice, cool etc.... Hannah Schneider performs a stripped down live version of recent single In The Line Of Fire in a (don...
-
Can't do much writing when it's hard to, like, swallow and your head feels like the USC Trojan band has just marched on your neck. S...
No comments:
Post a Comment