<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>csd Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home</link><description>csd Wiki Rss Description</description><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=12</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Project Description
&lt;/h2&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=csd&amp;amp;DownloadId=24666" alt="The Configuration Section Designer In Action" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Requirements
&lt;/h2&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;After installation, you have a new Item Type in Visual Studio named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;ConfigurationSection.csd&lt;/b&gt;: the designer itself.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionCode.tt&lt;/b&gt;: a text template code generator that generates the C# code for the configuration section.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSample.tt&lt;/b&gt;: generates a sample configuration file.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSchema.tt&lt;/b&gt;: generates the XSD schema representing the configuration section.&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Working with the Designer
&lt;/h2&gt;If you open the .csd file in Visual Studio, you get a blank design surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. Before you begin, you should right-click the design surface and select Properties, then set the Namespace and Xml Schema Namespace (if you forget, validation errors will point you to these properties).&lt;br /&gt; &lt;br /&gt;With all the required configuration classes added, set their properties and add configuration attributes and elements by right-clicking the elements and selecting the proper menu commands. &lt;i&gt;Attributes&lt;/i&gt; are usually simple types (string, int, boolean, ...) that are external, where &lt;i&gt;Elements&lt;/i&gt; are other types defined in the designer, e.g. to make one configuration element contain another configuration element.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Types
&lt;/h2&gt;When setting the Type property of an Attribute, you get a dropdown that contains a number of pre-initialized types. It is possible to add more types to this dropdown by opening the Configuration Section Explorer window (if it is not visible, go to the View menu, Other Windows, Configuration Section Explorer). You will see a node that contains all the configuration elements (also shown on the design surface), and a node that contains all the type definitions (not shown on the designer). If you right-click the root node, you can add new External Types (e.g. System.String).&lt;br /&gt; &lt;br /&gt;You can also define Enumerated Types (enums), for which code is also generated and which are treated specially when the XSD is generated (so you get full IntelliSense on the XML file with all the options of the enumeration).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Custom Child Elements
&lt;/h2&gt;Each Configuration Element has a propery named &amp;quot;Has Custom Child Elements&amp;quot;. This controls some code that is generated and changes the generated XSD to support child configuration elements (XML nodes) that can vary and aren't known at design-time yet.&lt;br /&gt; &lt;br /&gt;Suppose you have a logging section and a logger that is instantiated through reflection. That logger instance then parses the inner XML to define its settings.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;logger type=&amp;quot;Logging.FileLogger, CustomLoggingAssembly&amp;quot;&amp;gt;
  &amp;lt;fileOptions filename=&amp;quot;c:\log.txt&amp;quot; buffered=&amp;quot;true&amp;quot; /&amp;gt;
&amp;lt;/logger&amp;gt;
&lt;/pre&gt;So the &amp;lt;fileOptions&amp;gt; tag is only something that the FileLogger class would know about. I might as well plug in another logger type without the &amp;lt;fileOptions&amp;gt; but with &amp;lt;databaseOptions&amp;gt; instead. So the child element is custom &lt;i&gt;depending on the logger type&lt;/i&gt;.&lt;br /&gt; &lt;br /&gt;The &amp;quot;Has Custom Child Elements&amp;quot; flag on the Configuration Element does two things to help in this regard:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;It generates an &amp;quot;OnDeserializeUnrecognizedElement&amp;quot; method in the ConfigurationElement class so that a partial class definition can implement the required logic to handle the child XML. You will notice that the generated code does not compile because it calls a &amp;quot;HandleUnrecognizedElement&amp;quot; method that you need to implement (the point where the compilation error occurs contains comments on how to implement that).&lt;/li&gt;&lt;li&gt;It indicates in the generated XSD for the Configuration Section that the XML node that has the flag set can have any inner content (otherwise the XML with the inner tag would not be valid according to the XSD).&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Fri, 21 Mar 2008 12:29:03 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080321122903P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=11</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Project Description
&lt;/h2&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=csd&amp;amp;DownloadId=24666" alt="The Configuration Section Designer In Action" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Requirements
&lt;/h2&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;After installation, you have a new Item Type in Visual Studio named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;ConfigurationSection.csd&lt;/b&gt;: the designer itself.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionCode.tt&lt;/b&gt;: a text template code generator that generates the C# code for the configuration section.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSample.tt&lt;/b&gt;: generates a sample configuration file.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSchema.tt&lt;/b&gt;: generates the XSD schema representing the configuration section.&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Working with the Designer
&lt;/h2&gt;If you open the .csd file in Visual Studio, you get a blank design surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. Before you begin, you should right-click the design surface and select Properties, then set the Namespace and Xml Schema Namespace (if you forget, validation errors will point you to these properties).&lt;br /&gt; &lt;br /&gt;With all the required configuration classes added, set their properties and add configuration attributes and elements by right-clicking the elements and selecting the proper menu commands. &lt;i&gt;Attributes&lt;/i&gt; are usually simple types (string, int, boolean, ...) that are external, where &lt;i&gt;Elements&lt;/i&gt; are other types defined in the designer, e.g. to make one configuration element contain another configuration element.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Types
&lt;/h2&gt;When setting the Type property of an Attribute, you get a dropdown that contains a number of pre-initialized types. It is possible to add more types to this dropdown by opening the Configuration Section Explorer window (if it is not visible, go to the View menu, Other Windows, Configuration Section Explorer). You will see a node that contains all the configuration elements (also shown on the design surface), and a node that contains all the type definitions (not shown on the designer). If you right-click the root node, you can add new External Types (e.g. System.String).&lt;br /&gt; &lt;br /&gt;You can also define Enumerated Types (enums), for which code is also generated and which are treated specially when the XSD is generated (so you get full IntelliSense on the XML file with all the options of the enumeration).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Custom Child Elements
&lt;/h2&gt;Each Configuration Element has a propery named &amp;quot;Has Custom Child Elements&amp;quot;. This controls some code that is generated and changes the generated XSD to support child configuration elements (XML nodes) that can vary and aren't known at design-time yet.&lt;br /&gt; &lt;br /&gt;Suppose you have a logging section and a logger that is instantiated through reflection. That logger instance then parses the inner XML to define its settings.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;logger type=&amp;quot;Logging.FileLogger, CustomLoggingAssembly&amp;quot;&amp;gt;
  &amp;lt;fileOptions filename=&amp;quot;c:\log.txt&amp;quot; buffered=&amp;quot;true&amp;quot; /&amp;gt;
&amp;lt;/logger&amp;gt;
&lt;/pre&gt;So the &amp;lt;fileOptions&amp;gt; tag is only something that the FileLogger class would know about. I might as well plug in another logger type without the &amp;lt;fileOptions&amp;gt; but with &amp;lt;databaseOptions&amp;gt; instead. So the child element is custom &lt;i&gt;depending on the logger type&lt;/i&gt;.&lt;br /&gt; &lt;br /&gt;The &amp;quot;Has Custom Child Elements&amp;quot; flag on the Configuration Element does two things to help in this regard:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;It generates an &amp;quot;OnDeserializeUnrecognizedElement&amp;quot; method in the ConfigurationElement class so that a partial class definition can implement the required logic to handle the child XML. You will notice that the generated code does not compile because it calls a &amp;quot;HandleUnrecognizedElement&amp;quot; method that you need to implement (the point where the compilation error occurs contains comments on how to implement that).&lt;/li&gt;&lt;li&gt;It indicates in the generated XSD for the Configuration Section that the XML node that has the flag set can have any inner content (otherwise the XML with the inner tag would not be valid according to the XSD).&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
Upgrading From Previous Versions
&lt;/h2&gt;When you have created a .csd file with a previous version of the Configuration Section Designer, it will by default not open in a new version. However, it is sufficient to open the .csd and the .csd.diagram files in a text editor and change the DSL's version number from&lt;br /&gt; &lt;br /&gt;&lt;span class="codeInline"&gt; dslVersion=&amp;quot;1.0.0.0&amp;quot; &lt;/span&gt;&lt;br /&gt; &lt;br /&gt;to&lt;br /&gt; &lt;br /&gt;&lt;span class="codeInline"&gt; dslVersion=&amp;quot;1.1.0.0&amp;quot; &lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Wed, 19 Mar 2008 19:58:36 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080319075836P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Project Description
&lt;/h2&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=csd&amp;amp;DownloadId=24666" alt="The Configuration Section Designer In Action" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Requirements
&lt;/h2&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;After installation, you have a new Item Type in Visual Studio named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;ConfigurationSection.csd&lt;/b&gt;: the designer itself.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionCode.tt&lt;/b&gt;: a text template code generator that generates the C# code for the configuration section.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSample.tt&lt;/b&gt;: generates a sample configuration file.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSchema.tt&lt;/b&gt;: generates the XSD schema representing the configuration section.&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Working with the Designer
&lt;/h2&gt;If you open the .csd file in Visual Studio, you get a blank design surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. Before you begin, you should right-click the design surface and select Properties, then set the Namespace and Xml Schema Namespace (if you forget, validation errors will point you to these properties).&lt;br /&gt; &lt;br /&gt;With all the required configuration classes added, set their properties and add configuration attributes and elements by right-clicking the elements and selecting the proper menu commands. &lt;i&gt;Attributes&lt;/i&gt; are usually simple types (string, int, boolean, ...) that are external, where &lt;i&gt;Elements&lt;/i&gt; are other types defined in the designer, e.g. to make one configuration element contain another configuration element.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Types
&lt;/h2&gt;When setting the Type property of an Attribute, you get a dropdown that contains a number of pre-initialized types. It is possible to add more types to this dropdown by opening the Configuration Section Explorer window (if it is not visible, go to the View menu, Other Windows, Configuration Section Explorer). You will see a node that contains all the configuration elements (also shown on the design surface), and a node that contains all the type definitions (not shown on the designer). If you right-click the root node, you can add new External Types (e.g. System.String).&lt;br /&gt; &lt;br /&gt;You can also define Enumerated Types (enums), for which code is also generated and which are treated specially when the XSD is generated (so you get full IntelliSense on the XML file with all the options of the enumeration).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Custom Child Elements
&lt;/h2&gt;Each Configuration Element has a propery named &amp;quot;Has Custom Child Elements&amp;quot;. This controls some code that is generated and changes the generated XSD to support child configuration elements (XML nodes) that can vary and aren't known at design-time yet.&lt;br /&gt; &lt;br /&gt;Suppose you have a logging section and a logger that is instantiated through reflection. That logger instance then parses the inner XML to define its settings.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;logger type=&amp;quot;Logging.FileLogger, CustomLoggingAssembly&amp;quot;&amp;gt;
  &amp;lt;fileOptions filename=&amp;quot;c:\log.txt&amp;quot; buffered=&amp;quot;true&amp;quot; /&amp;gt;
&amp;lt;/logger&amp;gt;
&lt;/pre&gt;So the &amp;lt;fileOptions&amp;gt; tag is only something that the FileLogger class would know about. I might as well plug in another logger type without the &amp;lt;fileOptions&amp;gt; but with &amp;lt;databaseOptions&amp;gt; instead. So the child element is custom &lt;i&gt;depending on the logger type&lt;/i&gt;.&lt;br /&gt; &lt;br /&gt;The &amp;quot;Has Custom Child Elements&amp;quot; flag on the Configuration Element does two things to help in this regard:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;It generates an &amp;quot;OnDeserializeUnrecognizedElement&amp;quot; method in the ConfigurationElement class so that a partial class definition can implement the required logic to handle the child XML. You will notice that the generated code does not compile because it calls a &amp;quot;HandleUnrecognizedElement&amp;quot; method that you need to implement (the point where the compilation error occurs contains comments on how to implement that).&lt;/li&gt;&lt;li&gt;It indicates in the generated XSD for the Configuration Section that the XML node that has the flag set can have any inner content (otherwise the XML with the inner tag would not be valid according to the XSD).&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Wed, 09 Jan 2008 10:44:40 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080109104440A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Project Description
&lt;/h2&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=csd&amp;amp;DownloadId=24666" alt="The Configuration Section Designer In Action" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Requirements
&lt;/h2&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;After installation, you have a new Item Type in Visual Studio named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;ConfigurationSection.csd&lt;/b&gt;: the designer itself.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionCode.tt&lt;/b&gt;: a text template code generator that generates the C# code for the configuration section.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSample.tt&lt;/b&gt;: generates a sample configuration file.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSchema.tt&lt;/b&gt;: generates the XSD schema representing the configuration section.&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Working with the Designer
&lt;/h2&gt;If you open the .csd file in Visual Studio, you get a blank design surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. Before you begin, you should right-click the design surface and select Properties, then set the Namespace and Xml Schema Namespace (if you forget, validation errors will point you to these properties).&lt;br /&gt; &lt;br /&gt;With all the required configuration classes added, set their properties and add configuration attributes and elements by right-clicking the elements and selecting the proper menu commands. &lt;i&gt;Attributes&lt;/i&gt; are usually simple types (string, int, boolean, ...) that are external, where &lt;i&gt;Elements&lt;/i&gt; are other types defined in the designer, e.g. to make one configuration element contain another configuration element.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Types
&lt;/h2&gt;When setting the Type property of an Attribute, you get a dropdown that contains a number of pre-initialized types. It is possible to add more types to this dropdown by opening the Configuration Section Explorer window (if it is not visible, go to the View menu, Other Windows, Configuration Section Explorer). You will see a node that contains all the configuration elements (also shown on the design surface), and a node that contains all the type definitions (not shown on the designer). If you right-click the root node, you can add new External Types (e.g. System.String).&lt;br /&gt; &lt;br /&gt;You can also define Enumerated Types (enums), for which code is also generated and which are treated specially when the XSD is generated (so you get full IntelliSense on the XML file with all the options of the enumeration).&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Custom Child Elements
&lt;/h2&gt;On each Configuration Element, there is a propery &amp;quot;Has Custom Child Element&amp;quot;. This controls some code that is generated and changes the generated XSD to support child configuration elements (XML nodes) that can vary and aren't known at design-time yet.&lt;br /&gt; &lt;br /&gt;Suppose you have a logging section and a logger that is instantiated through reflection. That logger instance then parses the inner XML to define its settings.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;logger type=&amp;quot;Logging.FileLogger, CustomLoggingAssembly&amp;quot;&amp;gt;
  &amp;lt;fileOptions filename=&amp;quot;c:\log.txt&amp;quot; buffered=&amp;quot;true&amp;quot; /&amp;gt;
&amp;lt;/logger&amp;gt;
&lt;/pre&gt;So the &amp;lt;fileOptions&amp;gt; tag is only something that the FileLogger class would know about. I might as well plug in another logger type without the &amp;lt;fileOptions&amp;gt; but with &amp;lt;databaseOptions&amp;gt; instead. So the child element is custom &lt;i&gt;depending on the logger type&lt;/i&gt;.&lt;br /&gt; &lt;br /&gt;The &amp;quot;Has Custom Child Elements&amp;quot; flag on the Configuration Element does two things to help in this regard:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;It generates an &amp;quot;OnDeserializeUnrecognizedElement&amp;quot; method in the ConfigurationElement class so that a partial class definition can implement the required logic to handle the child XML. You will notice that the generated code does not compile because it calls a &amp;quot;HandleUnrecognizedElement&amp;quot; method that you need to implement (the point where the compilation error occurs contains comments on how to implement that).&lt;/li&gt;&lt;li&gt;It indicates in the generated XSD for the Configuration Section that the XML node that has the flag set can have any inner content (otherwise the XML with the inner tag would not be valid according to the XSD).&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Wed, 09 Jan 2008 10:38:52 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080109103852A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=8</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Project Description
&lt;/h2&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=csd&amp;amp;DownloadId=24666" alt="The Configuration Section Designer In Action" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Requirements
&lt;/h2&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;After installation, you have a new Item Type in Visual Studio named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;ConfigurationSection.csd&lt;/b&gt;: the designer itself.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionCode.tt&lt;/b&gt;: a text template code generator that generates the C# code for the configuration section.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSample.tt&lt;/b&gt;: generates a sample configuration file.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSchema.tt&lt;/b&gt;: generates the XSD schema representing the configuration section.&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Working with the Designer
&lt;/h2&gt;If you open the .csd file in Visual Studio, you get a blank design surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. Before you begin, you should right-click the design surface and select Properties, then set the Namespace and Xml Schema Namespace (if you forget, validation errors will point you to these properties).&lt;br /&gt; &lt;br /&gt;With all the required configuration classes added, set their properties and add configuration attributes and elements by right-clicking the elements and selecting the proper menu commands. &lt;i&gt;Attributes&lt;/i&gt; are usually simple types (string, int, boolean, ...) that are external, where &lt;i&gt;Elements&lt;/i&gt; are other types defined in the designer, e.g. to make one configuration element contain another configuration element.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Types
&lt;/h2&gt;When setting the Type property of an Attribute, you get a dropdown that contains a number of pre-initialized types. It is possible to add more types to this dropdown by opening the Configuration Section Explorer window (if it is not visible, go to the View menu, Other Windows, Configuration Section Explorer). You will see a node that contains all the configuration elements (also shown on the design surface), and a node that contains all the type definitions (not shown on the designer). If you right-click the root node, you can add new External Types (e.g. System.String).&lt;br /&gt; &lt;br /&gt;You can also define Enumerated Types (enums), for which code is also generated and which are treated specially when the XSD is generated (so you get full IntelliSense on the XML file with all the options of the enumeration).&lt;br /&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Sun, 30 Dec 2007 15:54:34 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071230035434P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Project Description
&lt;/h2&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=csd&amp;amp;DownloadId=24666" alt="The Configuration Section Designer In Action" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Requirements
&lt;/h2&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;After installation, you have a new Item Type in Visual Studio named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;ConfigurationSection.csd&lt;/b&gt;: the designer itself.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionCode.tt&lt;/b&gt;: a text template code generator that generates the C# code for the configuration section.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSample.tt&lt;/b&gt;: generates a sample configuration file.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSchema.tt&lt;/b&gt;: generates the XSD schema representing the configuration section.&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Working with the Designer
&lt;/h2&gt;If you open the .csd file in Visual Studio, you get a blank design surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. Before you begin, you should right-click the design surface and select Properties, then set the Namespace and Xml Schema Namespace (if you forget, validation errors will point you to these properties).&lt;br /&gt; &lt;br /&gt;With all the required configuration classes added, set their properties and add configuration attributes and elements by right-clicking the elements and selecting the proper menu commands. &lt;i&gt;Attributes&lt;/i&gt; are usually simple types (string, int, boolean, ...) that are external, where &lt;i&gt;Elements&lt;/i&gt; are other types defined in the designer, e.g. to make one configuration element contain another configuration element.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Types
&lt;/h2&gt;When setting the Type property of an Attribute, you get a dropdown that contains a number of pre-initialized types. It is possible to add more types to this dropdown by opening the Configuration Section Explorer window (if it is not visible, go to the View menu, Other Windows, Configuration Section Explorer). You will see a node that contains all the configuration elements (also shown on the design surface), and a node that contains all the type definitions (not shown on the designer). If you right-click the root node, you can add new External Types (e.g. System.String).&lt;br /&gt; &lt;br /&gt;You can also define Enumerated Types (enums), for which code is also generated and which are treated specially when the XSD is generated (so you get full IntelliSense on the XML file with all the options of the enumeration).&lt;br /&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Sun, 30 Dec 2007 15:52:17 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071230035217P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Project Description
&lt;/h2&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Requirements
&lt;/h2&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;After installation, you have a new Item Type in Visual Studio named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;ConfigurationSection.csd&lt;/b&gt;: the designer itself.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionCode.tt&lt;/b&gt;: a text template code generator that generates the C# code for the configuration section.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSample.tt&lt;/b&gt;: generates a sample configuration file.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSchema.tt&lt;/b&gt;: generates the XSD schema representing the configuration section.&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=csd&amp;amp;DownloadId=24666" alt="ConfigurationSectionDesigner.jpg" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Working with the Designer
&lt;/h2&gt;If you open the .csd file in Visual Studio, you get a blank design surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. Before you begin, you should right-click the design surface and select Properties, then set the Namespace and Xml Schema Namespace (if you forget, validation errors will point you to these properties).&lt;br /&gt; &lt;br /&gt;With all the required configuration classes added, set their properties and add configuration attributes and elements by right-clicking the elements and selecting the proper menu commands. &lt;i&gt;Attributes&lt;/i&gt; are usually simple types (string, int, boolean, ...) that are external, where &lt;i&gt;Elements&lt;/i&gt; are other types defined in the designer, e.g. to make one configuration element contain another configuration element.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Types
&lt;/h2&gt;When setting the Type property of an Attribute, you get a dropdown that contains a number of pre-initialized types. It is possible to add more types to this dropdown by opening the Configuration Section Explorer window (if it is not visible, go to the View menu, Other Windows, Configuration Section Explorer). You will see a node that contains all the configuration elements (also shown on the design surface), and a node that contains all the type definitions (not shown on the designer). If you right-click the root node, you can add new External Types (e.g. System.String).&lt;br /&gt; &lt;br /&gt;You can also define Enumerated Types (enums), for which code is also generated and which are treated specially when the XSD is generated (so you get full IntelliSense on the XML file with all the options of the enumeration).&lt;br /&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Sun, 30 Dec 2007 15:50:40 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071230035040P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Project Description
&lt;/h2&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Requirements
&lt;/h2&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Usage
&lt;/h2&gt;After installation, you have a new Item Type in Visual Studio named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;ConfigurationSection.csd&lt;/b&gt;: the designer itself.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionCode.tt&lt;/b&gt;: a text template code generator that generates the C# code for the configuration section.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSample.tt&lt;/b&gt;: generates a sample configuration file.&lt;/li&gt;&lt;li&gt;&lt;b&gt;ConfigurationSectionSchema.tt&lt;/b&gt;: generates the XSD schema representing the configuration section.&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Working with the Designer
&lt;/h2&gt;If you open the .csd file in Visual Studio, you get a blank design surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. Before you begin, you should right-click the design surface and select Properties, then set the Namespace and Xml Schema Namespace (if you forget, validation errors will point you to these properties).&lt;br /&gt; &lt;br /&gt;With all the required configuration classes added, set their properties and add configuration attributes and elements by right-clicking the elements and selecting the proper menu commands. &lt;i&gt;Attributes&lt;/i&gt; are usually simple types (string, int, boolean, ...) that are external, where &lt;i&gt;Elements&lt;/i&gt; are other types defined in the designer, e.g. to make one configuration element contain another configuration element.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Defining Types
&lt;/h2&gt;When setting the Type property of an Attribute, you get a dropdown that contains a number of pre-initialized types. It is possible to add more types to this dropdown by opening the Configuration Section Explorer window (if it is not visible, go to the View menu, Other Windows, Configuration Section Explorer). You will see a node that contains all the configuration elements (also shown on the design surface), and a node that contains all the type definitions (not shown on the designer). If you right-click the root node, you can add new External Types (e.g. System.String).&lt;br /&gt; &lt;br /&gt;You can also define Enumerated Types (enums), for which code is also generated and which are treated specially when the XSD is generated (so you get full IntelliSense on the XML file with all the options of the enumeration).&lt;br /&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Sun, 30 Dec 2007 15:31:57 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071230033157P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Usage&lt;/b&gt;&lt;br /&gt;After installation, you have a new Item Type named &amp;quot;ConfigurationSectionDesigner&amp;quot; (if you want to design the configuration section in an existing project) and a new Project Type in Visual Studio named &amp;quot;Configuration Section Project&amp;quot; (if you want to start with a new project). In both cases, you get a number of files:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;ConfigurationSection.csd: the designer itself&lt;/li&gt;&lt;li&gt;ConfigurationSectionCode.tt: a text template code generator that generates the C# code for the configuration section&lt;/li&gt;&lt;li&gt;ConfigurationSectionSample.tt: generates a sample configuration file&lt;/li&gt;&lt;li&gt;ConfigurationSectionSchema.tt: generates the XSD schema representing the configuration section&lt;/li&gt;
&lt;/ul&gt;The text templates are automatically transformed when you save the designer.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Working with the Designer&lt;/b&gt;&lt;br /&gt;If you open the .csd file in Visual Studio, you get a blank surface onto which you can drag Configuration Sections, Configuration Elements and Configuration Element Collections from the Toolbox. You can add configuration attributes and elements by right-clicking the shapes and selecting the proper menu commands.&lt;br /&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Sun, 30 Dec 2007 12:23:58 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071230122358P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;Microsoft Visual Studio 2008 Standard Edition or better.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Usage&lt;/b&gt;&lt;br /&gt;After installation, you have a new Item Type named &amp;quot;ConfigurationSectionDesigner&amp;quot; and a new project type in Visual Studio named &amp;quot;Configuration Section Project&amp;quot;.&lt;br /&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Sat, 29 Dec 2007 17:51:06 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071229055106P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/csd/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition &amp;#40;XSD&amp;#41; for them.
&lt;br /&gt;
&lt;/div&gt;</description><author>jelled</author><pubDate>Sat, 29 Dec 2007 17:46:49 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20071229054649P</guid></item></channel></rss>