2

I have repaired .net 4.0 but (still) cannot find:

Ilasm.exe

Any ideas? I need it to do this:

strong name signing of assembly

svick
  • 236,525
  • 50
  • 385
  • 514
cs0815
  • 16,751
  • 45
  • 136
  • 299

2 Answers2

5

This should exist in your Windows folder, under Windows\Microsoft.NET\Framework\v4.0.30319.

That being said, it also comes with Visual Studio or the Windows SDK. This has the advantage of also installing command prompts which setup the environment correctly, and can make this simpler to use.

For details, see the documentation for Ilasm.exe.

Reed Copsey
  • 554,122
  • 78
  • 1,158
  • 1,373
  • Nope, you are thinking of ildasm. ilasm has always been there along with the csc and vbc :) – leppie Jun 26 '12 at 15:54
  • I could mistaken too. It is just interesting that it installs itself under the windows framework directory if it does not come with the framework. – leppie Jun 26 '12 at 15:57
  • I just checked in the .NET 4 install files. ilasm.exe is indeed there. Both x86 and amd64 versions. – leppie Jun 26 '12 at 15:59
1

It only comes with the full profile. Not the client profile.

Did you download the correct version?

leppie
  • 115,091
  • 17
  • 196
  • 297