josephwoodward / VSCodeILViewer

A Visual Studio Code C# IL (Intermediate Language) Viewer
MIT License
98 stars 17 forks source link

Support weavers #16

Open tzachshabtay opened 6 years ago

tzachshabtay commented 6 years ago

Hi, I want to inspect the output of IL weavers (like Fody or PostSharp), but it looks as though you compile the code yourself and not inspect the compiled IL, so will it work?

josephwoodward commented 6 years ago

Hi tzachshabtay, I don't think it would work. As you say, VS Code IL Viewer compiles the code (just the class being inspected) in memory to get the IL. I'd be interested in making it inspect the pre-compiled .dll but that brings into questions as to how old the .dll is which may result in another compilation to ensure the latest version.