1

Pretty much as the title suggests.

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

AnthonyWJones
  • 187,081
  • 35
  • 232
  • 306
Rory Becker
  • 15,551
  • 16
  • 69
  • 94
  • 1
    Have a look at process explorer when doing a build- http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx – RichardOD Apr 20 '10 at 11:31

3 Answers3

3

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

Kirill Osenkov
  • 8,786
  • 2
  • 33
  • 37
2

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

Daniel Pratt
  • 12,007
  • 2
  • 44
  • 61
0

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
  • 489,969
  • 99
  • 883
  • 1,009