sandcastle

sandcastle with visual studio 2010 and msbuild 4.0

Hi! Anyone using sandcasle..i didnt find any straught forward step by step walktought to use it and create msbuild project settings that would generate the friendly help file. I installed it from codeplex and installed the file builder but they dont say how to use it clearly. any example would be apptrciated. ...

XML Documentation for dependency properties

What is the best way to document a dependency property? Should I put the xml documentation on the field: /// <summary>Documentation goes here</summary> public static readonly DependencyProperty NameProperty = DependencyProperty.Register(...) or on the property: /// <summary>and/or here?</summary> public string Name{ get{......