<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Configuration Section Designer</title><link>http://csd.codeplex.com/project/feeds/rss</link><description>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.</description><item><title>New Post: Nested Structures</title><link>http://csd.codeplex.com/discussions/406262</link><description>&lt;div style="line-height: normal;"&gt;I'm afraid I'm denser than you: could you elaborate on how you go about &amp;quot;Chaining collections together&amp;quot;?  I'm trying to achieve the same effect as you describe in your original post.&lt;br /&gt;
&lt;/div&gt;</description><author>DLBlanchard</author><pubDate>Tue, 21 May 2013 09:47:25 GMT</pubDate><guid isPermaLink="false">New Post: Nested Structures 20130521094725A</guid></item><item><title>Closed Feature: Cut/Copy/Paste between designers [5539]</title><link>http://csd.codeplex.com/workitem/5539</link><description>Allow objects in the designers to be cut&amp;#47;copy&amp;#47;pasted between diagrams&lt;br /&gt;</description><author>andym1978</author><pubDate>Thu, 16 May 2013 11:04:54 GMT</pubDate><guid isPermaLink="false">Closed Feature: Cut/Copy/Paste between designers [5539] 20130516110454A</guid></item><item><title>Closed Issue: Element name issues with ConfigurationElementCollection using AddRemoveClearMapAlternate in Visual Studio 2010 [8857]</title><link>http://csd.codeplex.com/workitem/8857</link><description>The same old problem &amp;#40;closed issue 7458&amp;#41; persists in VS2010 &amp;#40;release 2.0.0 r4&amp;#41;.&lt;br /&gt;</description><author>CCPFC</author><pubDate>Thu, 16 May 2013 11:04:47 GMT</pubDate><guid isPermaLink="false">Closed Issue: Element name issues with ConfigurationElementCollection using AddRemoveClearMapAlternate in Visual Studio 2010 [8857] 20130516110447A</guid></item><item><title>Closed Issue: I installed but do not see project type [9739]</title><link>http://csd.codeplex.com/workitem/9739</link><description>I have selected the Visual C&amp;#35; node in the New Project dialog and don&amp;#39;t see it. I have installed and uninstalled it to no avail.&lt;br /&gt;</description><author>andym1978</author><pubDate>Thu, 16 May 2013 11:04:45 GMT</pubDate><guid isPermaLink="false">Closed Issue: I installed but do not see project type [9739] 20130516110445A</guid></item><item><title>Reviewed: 2.0.1 r0 for Visual Studio 2012 (May 06, 2013)</title><link>https://csd.codeplex.com/releases/view/99381#ReviewBy-jamescmonroe</link><description>Rated 5 Stars &amp;#40;out of 5&amp;#41; - Thank you very much for saving me some time generating my configuration section. You have managed to make the process easier with this great designer.</description><author>jamescmonroe</author><pubDate>Mon, 06 May 2013 21:25:49 GMT</pubDate><guid isPermaLink="false">Reviewed: 2.0.1 r0 for Visual Studio 2012 (May 06, 2013) 20130506092549P</guid></item><item><title>Reviewed: 2.0.1 r0 for Visual Studio 2012 (Apr 18, 2013)</title><link>https://csd.codeplex.com/releases/view/99381#ReviewBy-skoenigpi</link><description>Rated 5 Stars &amp;#40;out of 5&amp;#41; - great release&amp;#33;&amp;#33;&amp;#33; thanks&amp;#33;</description><author>skoenigpi</author><pubDate>Thu, 18 Apr 2013 13:23:27 GMT</pubDate><guid isPermaLink="false">Reviewed: 2.0.1 r0 for Visual Studio 2012 (Apr 18, 2013) 20130418012327P</guid></item><item><title>New Post: Read configuration element data that is not in an attribute?</title><link>http://csd.codeplex.com/discussions/437734</link><description>&lt;div style="line-height: normal;"&gt;Ok I missed that this is currently possible by setting flag &amp;quot;Has Custom Child Elements&amp;quot; to true.&lt;br /&gt;
If I have for example configuration element named OperationElement with such flag I have to write partial class&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;public partial class OperationElement
{
    public string Script { get; set; }
    private bool HandleUnrecognizedElement(string elementName, global::System.Xml.XmlReader reader)
    {
        this.Script = reader.ReadString();
        return true;
    }
}
&lt;/code&gt;&lt;/pre&gt;

And all works as expected&lt;br /&gt;
&lt;/div&gt;</description><author>AdaskoTheBeAsT</author><pubDate>Mon, 08 Apr 2013 11:34:33 GMT</pubDate><guid isPermaLink="false">New Post: Read configuration element data that is not in an attribute? 20130408113433A</guid></item><item><title>New Post: Read configuration element data that is not in an attribute?</title><link>http://csd.codeplex.com/discussions/437734</link><description>&lt;div style="line-height: normal;"&gt;It would be also nice if CSD would allow to use CData elements.&lt;br /&gt;
&lt;br /&gt;
I found sample implementation here &lt;br /&gt;
&lt;a href="http://devpinoy.org/blogs/jakelite/archive/2009/03/22/how-to-add-cdata-or-text-in-a-configurationelement.aspx" rel="nofollow"&gt;Sample article&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>AdaskoTheBeAsT</author><pubDate>Mon, 08 Apr 2013 10:57:03 GMT</pubDate><guid isPermaLink="false">New Post: Read configuration element data that is not in an attribute? 20130408105703A</guid></item><item><title>New Post: Read configuration element data that is not in an attribute?</title><link>http://csd.codeplex.com/discussions/437734</link><description>&lt;div style="line-height: normal;"&gt;I have an optional element hanging off my configuration called cnfNotes; my intention is to have this node basically be a free text field like so:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;account id=&amp;quot;someid&amp;quot; name=&amp;quot;somename&amp;quot; ...&amp;gt;
    &amp;lt;bankInfo id=&amp;quot;someid&amp;quot; name=&amp;quot;somename&amp;quot;... /&amp;gt;
    &amp;lt;notes&amp;gt;
        blah blah blah...
    &amp;lt;/notes&amp;gt;
&amp;lt;/account&amp;gt;&lt;/code&gt;&lt;/pre&gt;

...but I cannot figure out how to access this value programmatically.  Is this not supported?&lt;br /&gt;
&lt;/div&gt;</description><author>jholovacs</author><pubDate>Sat, 23 Mar 2013 13:50:25 GMT</pubDate><guid isPermaLink="false">New Post: Read configuration element data that is not in an attribute? 20130323015025P</guid></item><item><title>New Post: Sharing items between diagrams</title><link>http://csd.codeplex.com/discussions/437465</link><description>&lt;div style="line-height: normal;"&gt;First I would like to send a big Thank You for everyone participating in this great tool, because it makes creating configurations a joy. The question I face now is that is it possible to share items (sections, elements, etc.) between diagrams? I think the answer is no, because the code for the diagrams is always re-generated.&lt;br /&gt;
I think it would be a nice feature to allow elements and collections be shared among diagrams, because now if I need to have some elements be shared among diagrams (have the same name), it is possible to copy-paste them, but they result in identical generated classes thus collide with each other (not if I put them into different namespaces or rename them). If this tool would allow referring to content in other diagrams, this issue would not arise.&lt;br /&gt;
&lt;/div&gt;</description><author>janimatyastct</author><pubDate>Thu, 21 Mar 2013 10:15:26 GMT</pubDate><guid isPermaLink="false">New Post: Sharing items between diagrams 20130321101526A</guid></item><item><title>Commented Issue: Inherit from "designer external" base class [6836]</title><link>http://csd.codeplex.com/workitem/6836</link><description>I need to inherit from a configuration section base class located in a different assembly &amp;#40;referenced by the Configuration section project&amp;#41;.&lt;br /&gt;&amp;#160;&lt;br /&gt;The designer currently only allows for selecting base classes that are part of the same CSD file &amp;#40;e.g. ConfigurationSection.csd&amp;#41;.&lt;br /&gt;Comments: ** Comment from web user: dtroyz ** &lt;p&gt;It would also be extremely helpful if you could use the built in .net Elements/Sections as well.&lt;br&gt;http://msdn.microsoft.com/en-us/library/system.configuration.configurationelement.aspx#inheritanceContinued&lt;/p&gt;&lt;p&gt;&lt;br&gt;Also, support for text within an element as suggested here:&lt;br&gt;http://csd.codeplex.com/discussions/272087&lt;/p&gt;&lt;p&gt;Would be great.&lt;/p&gt;</description><author>dtroyz</author><pubDate>Fri, 15 Mar 2013 02:40:00 GMT</pubDate><guid isPermaLink="false">Commented Issue: Inherit from "designer external" base class [6836] 20130315024000A</guid></item><item><title>Created Issue: Export diagram as image [9936]</title><link>http://csd.codeplex.com/workitem/9936</link><description>It would be very useful to be able to export the diagram as an image.&lt;br /&gt;While small diagrams may be captured using a screenshot and then cropped, in case of large diagrams &amp;#40;or small screens&amp;#33;&amp;#41; the diagram may not fit the screen at a zoom level high enough for things to be readable.&lt;br /&gt;&lt;br /&gt;This functionality is available in other similar diagrams, e.g. EntityFramework&amp;#39;s edmx editor, as a right-click-on-the-canvas menu option.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m hoping the actual functionality is provided by Visual Studio&amp;#39;s diagramming module, and it just needs to be exposed by CSD.&lt;br /&gt;</description><author>fdsaasdf</author><pubDate>Wed, 06 Mar 2013 09:46:07 GMT</pubDate><guid isPermaLink="false">Created Issue: Export diagram as image [9936] 20130306094607A</guid></item><item><title>Source code checked in, #72099</title><link>http://csd.codeplex.com/SourceControl/changeset/changes/72099</link><description>- Verified fix for Issue 9747&amp;#13;&amp;#10;- Added support for Keyless collection using GetHashCode</description><author>iLMaX</author><pubDate>Tue, 05 Mar 2013 22:26:49 GMT</pubDate><guid isPermaLink="false">Source code checked in, #72099 20130305102649P</guid></item><item><title>Commented Issue: Generated XSD does not produce 'Add', 'Remove' or 'Clear' entries [9747]</title><link>http://csd.codeplex.com/workitem/9747</link><description>This is the same problem reported in issues 7458 and 8857 and has not been fixed by Release 2.0.0 R5.&lt;br /&gt;Comments: ** Comment from web user: iLMaX ** &lt;p&gt;I have verified the fix by @andym1978.&lt;br&gt;Is fixed in latest VS2012 release&lt;/p&gt;</description><author>iLMaX</author><pubDate>Tue, 05 Mar 2013 21:27:16 GMT</pubDate><guid isPermaLink="false">Commented Issue: Generated XSD does not produce 'Add', 'Remove' or 'Clear' entries [9747] 20130305092716P</guid></item><item><title>New Post: Cannot find a schema that defines target namespace ..</title><link>http://csd.codeplex.com/discussions/434068</link><description>&lt;div style="line-height: normal;"&gt;I get the following warning:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;Warning 1   Cannot find a schema that defines target namespace 'http://schemas.microsoft.com/dsltools/ConfigurationSectionDesigner', schema validation skipped. M:\Dok\Visual Studio 2012\Projects\ServiceBrokerLib\ServiceBrokerLib\ConfigurationDesigner.csd  2   2
&lt;/code&gt;&lt;/pre&gt;

I use the latest version of the VS2012 extension.&lt;br /&gt;
&lt;/div&gt;</description><author>jgauffin</author><pubDate>Fri, 22 Feb 2013 06:45:53 GMT</pubDate><guid isPermaLink="false">New Post: Cannot find a schema that defines target namespace .. 20130222064553A</guid></item><item><title>New Post: ConfigurationElementCollection and the generated XSD</title><link>http://csd.codeplex.com/discussions/404661</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
Has there been any progress on this?&lt;br /&gt;
&lt;br /&gt;
Best,&lt;br /&gt;
&lt;br /&gt;
Asher&lt;br /&gt;
&lt;/div&gt;</description><author>AsherBarak</author><pubDate>Mon, 18 Feb 2013 08:22:08 GMT</pubDate><guid isPermaLink="false">New Post: ConfigurationElementCollection and the generated XSD 20130218082208A</guid></item><item><title>New Post: Custom type problem</title><link>http://csd.codeplex.com/discussions/430339</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi and thank u again for this brilliant tool. We used to use in when we where using VS 2010. and after moving to VS 2012 it was one of those few extensions we were messing a lot :). I am very glad to see this project is still alive and u added support for
 VS 2012, but what we can not figure out is, how to add custom types? the only option we have is by right-clicking on designer and selecting import external enum, but even in this case we have to choose external DLL file. what we want to to is to use Types
 from same project (In our case configuration section designer is part of our Class Library project). can u explain this a little bit?&lt;/p&gt;
&lt;p&gt;in VS 2010 we could right-click on Type Definitions root node and select add from there but now there is no menu entry there.&lt;/p&gt;
&lt;p&gt;so let me ask u one more time, how to work with custom types in VS2012 and Config Section Designer?&lt;/p&gt;
&lt;/div&gt;</description><author>taicodev</author><pubDate>Mon, 21 Jan 2013 20:46:06 GMT</pubDate><guid isPermaLink="false">New Post: Custom type problem 20130121084606P</guid></item><item><title>Created Issue: IOException and ArgumentOutOfRangeException when trying to install 2.0.1 r0 for Visual Studio 2012 (alpha) [9851]</title><link>http://csd.codeplex.com/workitem/9851</link><description>During first install, I received an IOException, stating that a file with a user section was still open.&lt;br /&gt;&lt;br /&gt;After a restart, I now get this error on startup of the installer. I cannot retry to install.&lt;br /&gt;&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;13 AM - Microsoft VSIX Installer&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;13 AM - -------------------------------------------&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;13 AM - Initializing Install...&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - Extension Details...&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;Identifier      &amp;#58; 9f16956e-2232-4f80-9ebb-4165929ef3ef&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;Name            &amp;#58; ConfigurationSectionDesigner&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;Author          &amp;#58; The Community&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;Version         &amp;#58; 2.0.1.0&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;Description     &amp;#58; 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;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;Locale          &amp;#58; en-US&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;MoreInfoURL     &amp;#58; http&amp;#58;&amp;#47;&amp;#47;csd.codeplex.com&amp;#47;&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;InstalledByMSI  &amp;#58; False&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;SupportedFrameworkVersionRange &amp;#58; &amp;#91;4.5&amp;#93;&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;Supported Products &amp;#58; &lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;&amp;#9;Microsoft.VisualStudio.Ultimate&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;&amp;#9;&amp;#9;Version &amp;#58; &amp;#91;11.0&amp;#93;&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;&amp;#9;Microsoft.VisualStudio.Premium&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;&amp;#9;&amp;#9;Version &amp;#58; &amp;#91;11.0&amp;#93;&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;&amp;#9;Microsoft.VisualStudio.Pro&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;&amp;#9;&amp;#9;Version &amp;#58; &amp;#91;11.0&amp;#93;&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &amp;#9;References      &amp;#58; &lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - &lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - Searching for applicable products...&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - Found installed product - Microsoft Visual Studio 2010 Professional&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;14 AM - Found installed product - Microsoft Visual Studio Professional 2012&lt;br /&gt;2013&amp;#47;01&amp;#47;21 09&amp;#58;02&amp;#58;15 AM - System.ArgumentOutOfRangeException&amp;#58; Specified argument was out of the range of valid values.&lt;br /&gt;Parameter name&amp;#58; zipFileName&lt;br /&gt;   at MS.Internal.IO.Zip.ZipIOBlockManager.ValidateNormalizeFileName&amp;#40;String zipFileName&amp;#41;&lt;br /&gt;   at MS.Internal.IO.Zip.ZipIOCentralDirectoryFileHeader.ParseRecord&amp;#40;BinaryReader reader, Encoding encoding&amp;#41;&lt;br /&gt;   at MS.Internal.IO.Zip.ZipIOCentralDirectoryBlock.ParseRecord&amp;#40;BinaryReader reader, Int64 centralDirectoryOffset, Int32 centralDirectoryCount, Int64 expectedCentralDirectorySize&amp;#41;&lt;br /&gt;   at MS.Internal.IO.Zip.ZipIOCentralDirectoryBlock.SeekableLoad&amp;#40;ZipIOBlockManager blockManager&amp;#41;&lt;br /&gt;   at MS.Internal.IO.Zip.ZipIOBlockManager.get_CentralDirectoryBlock&amp;#40;&amp;#41;&lt;br /&gt;   at MS.Internal.IO.Zip.ZipArchive.GetFiles&amp;#40;&amp;#41;&lt;br /&gt;   at System.IO.Packaging.ZipPackage.ContentTypeHelper..ctor&amp;#40;ZipArchive zipArchive, IgnoredItemHelper ignoredItemHelper&amp;#41;&lt;br /&gt;   at System.IO.Packaging.ZipPackage..ctor&amp;#40;Stream s, FileMode mode, FileAccess access, Boolean streaming&amp;#41;&lt;br /&gt;   at System.IO.Packaging.Package.Open&amp;#40;Stream stream, FileMode packageMode, FileAccess packageAccess, Boolean streaming&amp;#41;&lt;br /&gt;   at Microsoft.VisualStudio.ExtensionManager.CachedInstalledExtensionList.GetOrOpenCache&amp;#40;Boolean readOnly&amp;#41;&lt;br /&gt;   at Microsoft.VisualStudio.ExtensionManager.CachedInstalledExtensionList.StopScan&amp;#40;Int64 timestamp&amp;#41;&lt;br /&gt;   at Microsoft.VisualStudio.ExtensionManager.ExtensionManagerService.InitializeList&amp;#40;CachedInstalledExtensionList cachedExtensionsList, IEnumerable&amp;#96;1 enabledExtensions, Boolean safeMode, Boolean isSdkList&amp;#41;&lt;br /&gt;   at Microsoft.VisualStudio.ExtensionManager.ExtensionManagerService.InstalledExtensionListData.&amp;#38;lt&amp;#59;&amp;#38;gt&amp;#59;c__DisplayClass6a.b__69&amp;#40;&amp;#41;&lt;br /&gt;   at System.Lazy&amp;#96;1.CreateValue&amp;#40;&amp;#41;&lt;br /&gt;   at System.Lazy&amp;#96;1.LazyInitValue&amp;#40;&amp;#41;&lt;br /&gt;   at System.Lazy&amp;#96;1.get_Value&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.VisualStudio.ExtensionManager.ExtensionManagerService.PartitionedInstalledExtensionList.b__6c&amp;#40;InstalledExtensionListData data&amp;#41;&lt;br /&gt;   at System.Linq.Enumerable.WhereSelectEnumerableIterator&amp;#96;2.MoveNext&amp;#40;&amp;#41;&lt;br /&gt;   at Microsoft.VisualStudio.ExtensionManager.ExtensionManagerService.PartitionedInstalledExtensionList.TryGetValue&amp;#40;String identifier, IInstalledExtension&amp;#38;amp&amp;#59; result&amp;#41;&lt;br /&gt;   at Microsoft.VisualStudio.ExtensionManager.ExtensionManagerService.TryGetInstalledExtension&amp;#40;String identifier, IInstalledExtension&amp;#38;amp&amp;#59; result&amp;#41;&lt;br /&gt;   at VSIXInstaller.App.GetExtensionManagerForApplicableSKU&amp;#40;SupportedVSSKU supportedSKU, IInstallableExtension installableExtension, List&amp;#96;1 applicableSKUs&amp;#41;&lt;br /&gt;   at VSIXInstaller.App.InitializeInstall&amp;#40;&amp;#41;&lt;br /&gt;   at System.Threading.Tasks.Task.InnerInvoke&amp;#40;&amp;#41;&lt;br /&gt;   at System.Threading.Tasks.Task.Execute&amp;#40;&amp;#41;&lt;br /&gt;</description><author>MHALottering4</author><pubDate>Mon, 21 Jan 2013 07:05:14 GMT</pubDate><guid isPermaLink="false">Created Issue: IOException and ArgumentOutOfRangeException when trying to install 2.0.1 r0 for Visual Studio 2012 (alpha) [9851] 20130121070514A</guid></item><item><title>Created Issue: The custom tool 'CsdFileGenerator' failed.  Unrecognized Guid format. [9841]</title><link>http://csd.codeplex.com/workitem/9841</link><description>In VS2012 &amp;#40;VB.NET&amp;#41; I am trying to use this tool with a Class Library project &amp;#40;and eventually also created a Configuration Section Project&amp;#41;. I have created my diagram but the tool fails to generate any code. I get the warning &amp;#38;quot&amp;#59;The custom tool &amp;#39;CsdFileGenerator&amp;#39; failed.  Unrecognized Guid format.&amp;#38;quot&amp;#59; and then nothing happens.&lt;br /&gt;</description><author>Tamayi</author><pubDate>Wed, 16 Jan 2013 20:51:11 GMT</pubDate><guid isPermaLink="false">Created Issue: The custom tool 'CsdFileGenerator' failed.  Unrecognized Guid format. [9841] 20130116085111P</guid></item><item><title>New Post: ConfigurationElementCollection and the generated XSD</title><link>http://csd.codeplex.com/discussions/404661</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Has there been a fix for this? (Have been busy and might have missed it.)&lt;/p&gt;
&lt;/div&gt;</description><author>CCPFC</author><pubDate>Fri, 11 Jan 2013 16:56:45 GMT</pubDate><guid isPermaLink="false">New Post: ConfigurationElementCollection and the generated XSD 20130111045645P</guid></item></channel></rss>