Difference between and .csproj file settings?

后端 未结 2 1873
囚心锁ツ
囚心锁ツ 2021-01-21 05:51

Setting in Web.config seems to do things that you can also set in Visual Studio in Project properties, Build tab. Are they

相关标签:
2条回答
  • 2021-01-21 05:56

    Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development.

    0 讨论(0)
  • 2021-01-21 06:19

    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,

    http://msdn.microsoft.com/en-us/library/ms178466.aspx

    0 讨论(0)
提交回复
热议问题