Setting <compilation debug="true/false">
in Web.config seems to do things that you can also set in Visual Studio in Project properties, Build tab. Are they connected somehow? Does one of them takes precedence when compiling?
Asked
Active
Viewed 3,455 times
4

ciscoheat
- 3,719
- 1
- 35
- 52
2 Answers
3
They are not connected. The compilation tag is ASP.NET only, while the project option one is for Windows Forms, console, WPF and so on.
ASP.NET compilation is so special, so you have to dive further to learn about every piece of it,

Lex Li
- 60,503
- 9
- 116
- 147
1
Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development.

Dana Benson
- 966
- 7
- 16
-
I know what happens when I set the attribute, as I wrote I want to know if there is a connection between it and the seemingly similar features of the Project Properties in Visual Studio. – ciscoheat Mar 30 '12 at 00:51