12

Can anyone point me to a schema or a list of properties valid inside the C# csproj file? I've looked, but don't appear to be able to find any documentation on it.

Paul Michaels
  • 16,185
  • 43
  • 146
  • 269

2 Answers2

18

You mean something like this documentation? A reference can be found here

n535
  • 4,983
  • 4
  • 23
  • 28
  • Thankyou, but I was after more of a reference than a walk-through. I've come across a property that doesn't appear to be available from the IDE and was wondering what else is available. – Paul Michaels Apr 13 '10 at 17:47
  • I'm not sure that i understand you, but i have edited my post to provide a link to a MSBuild project file schema reference. Maybe it will be helpful. – n535 Apr 13 '10 at 17:54
8

This was already answered here...

Csproj are actually MSBuild files and I think the reference can be found here:

MSBuild Project File Schema Reference

The schema used by VS (VS 2008) is located here:

C:\Program Files\Microsoft Visual Studio 9.0\Xml\Schemas\1033\MSBuild\Microsoft.Build.Core.xsd

Community
  • 1
  • 1
Dean Kuga
  • 11,878
  • 8
  • 54
  • 108