23

I used to be able to run ildasm in the Developer Command Prompt for Visual Studio 2017. With Visual Studio 2019, ildasm is no longer available:

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>ildasm
'ildasm' is not recognized as an internal or external command,
operable program or batch file.

Was it replaced with something else or is my VS 2019 installation incomplete?

redcurry
  • 2,381
  • 2
  • 24
  • 38

2 Answers2

36

ildasm.exe is installed with the Windows SDK tools, located in C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\ildasm.exe or somewhere similar depending on the version.

You can install the SDK from this website or by selecting it in the optional components during the installation of VS2019.

dee-see
  • 23,668
  • 5
  • 58
  • 91
5

Try to use it directly from Developer Command Prompt 2019/2017

Mohamad Mahmoud Darwish
  • 3,865
  • 9
  • 51
  • 76