Rory Becker
Rory Becker

Reputation: 15701

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

Pretty much as the title suggests.

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

Upvotes: 1

Views: 1272

Answers (3)

Daniel Pratt
Daniel Pratt

Reputation: 12077

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

Upvotes: 2

Oded
Oded

Reputation: 498972

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

Upvotes: 0

Related Questions