Does VS2010 use csc.exe / vbc.exe (directly or indirectly) to compile relevant projects?

1.2k views Asked by At

Pretty much as the title suggests.

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

3

There are 3 answers

0
Kirill Osenkov On
0
Oded On

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).

0
Daniel Pratt On

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