Can you add comments to a .csproj file? If so, what's the best way to do it?
12 Answers
Comments are written as usual in XML files:
<!-- comment --> How to: Write a Simple MSBuild Project
2The following works for multi-line comments.
<!-- comment 1 comment 2 .... -->