开发者

Does Visual Studio continuously compile?

When working in VS, the 开发者_开发知识库error messages in the bottom panel are compiler errors and warnings, right? Does this mean the app is being compiled all the time? I would expect those to appear only when trying to run the app.

This is probably a silly question, but I cannot find the answer.


Visual Studio continually parses the source code; this allows it to preemptively report some errors before you actually compile the source.

This is, of course, dependent upon which language you are using. C++ didn't get preemptive error reporting until Visual Studio 2010.


Visual Studio doesn't natively continuously compile code.

However, I just downloaded the 14 day trial of this little app called .Net Demon that's a plugin for Visual Studio. It costs $30, but definitely a nifty tool if you've got large solutions with many projects.

http://www.red-gate.com/products/dotnet-development/dotnet-demon/

I'll probably end up breaking down and buying it, it's pretty slick.


Each programming language is different (each provides a Visual Studio 'language service' specific to that language that provides the feedback), but for the most part, yes, it is being compiled over and over. In F#, for example, the compiler is divided into a few stages, main ones being lexer/parser, typechecker, and code generator, and the lexer/parser/typechecker are running inside VS, and every time you type a character into a file, that file is re-run through those stages of the compiler.


When you compile an application there might be errors and warnings which will be shown at the errors window. When you run the application errors will no longer be shown in Visual Studio but depending on how your application is organized it will either crash or handle them gracefully. Also notice that if you try to run the application with F5 or Ctrl+F5 Visual Studio will try to compile it first and if there are compile-time errors and warnings they will be shown.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜