I'm having a hard time trying to (Dis)assemble a dll using the Visual Studio command prompt, don't look that simple as I see in the microsoft page.
I'm using the ildasm for these way:
ildasm myLibrary.dll output:MyLibrary.il
And I get: Unable to open 'MyLibrary.il' for output.
I also tried the full path:
ildasm directory\myLibrary.dll output:directory\MyLibrary.il
And I get: MULTIPLE INPUT FILES SPECIFIED
Using the ildasm GUI actually works, but when I use the ilasm:
ilasm myLibrary.il /dll
I get: Could not open 'myLibrary.il', when I use the full path I get the same error.
What's wrong here?