josephwoodward/VSCodeILViewer — reverse-engineered prompt

Reverse engineered prompt

GitHub

Build me a Visual Studio Code extension for C# developers that lets someone open a C# file and quickly see the generated Intermediate Language for that file.

The user flow should be simple. When a .cs file is open, they can right click and choose Inspect IL. The extension should compile that file in memory along with the dependencies it needs, then show the IL output in VS Code without making the user manually run build commands or dig through generated files.

Keep it focused and practical. It should work for .NET Core style projects, handle basic errors clearly, and feel like a lightweight developer tool rather than a big app. Include enough setup so it can be installed and tested locally in VS Code, with a short README explaining how to use it.

Look up current VS Code extension and Roslyn docs online if you need to.

Want more depth? Deep Reverse