Posts

Showing posts from October, 2011

VS2010 User Control - Text Property

In VS2010, Text property in user control are not visible by default. Adding Browsable(true) attribute will display the Text property in properties window but the value was not stored in designer file (xxxx.designer.cs). Solutions:   [ EditorBrowsable ( EditorBrowsableState . Always )] [ Browsable ( true )] [ DesignerSerializationVisibility ( DesignerSerializationVisibility . Visible )] [ Bindable ( true )] public override string Text ...  

Sandcastle Help File Builder (Command Line)

Building Sandcastle help file from command line using MSBuild. %SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:Configuration=Release HelpFile.shfbproj %SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /p:CopyrightText="Copyright \xa9 2006-2011" /p:FeedbackEMailAdress="Eric@EWoodruff.us" HelpFile.shfbproj Original link: http://www.ewoodruff.us/shfbdocs/html/8ffc0d37-0215-4609-b6f8-dba53a6c5063.htm