views:

207

answers:

3

Pretty much as the title suggests.

I can't find any proof that DevEnv.exe actually calls these at any point.

A: 

Check the targets files - you will see that the compilers are referenced in the relevant targets file.

These files are what MSBuild uses to determine what and how to build a project (when using F5 or Build Project).

Oded
A: 

Visual Studio uses an in-process compiler for C# compilation. I would guess the same is true for VB.NET.

Daniel Pratt
+1  A: 

Also, here's an interesting link: http://blogs.msdn.com/ed_maurer/archive/2008/06/11/a-tale-of-two-compilers.aspx

Kirill Osenkov