<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Xsd2Code Work Item Rss Feed</title><link>http://www.codeplex.com/Xsd2Code/WorkItem/List.aspx</link><description>Xsd2Code Work Item Rss Description</description><item><title>Commented Issue: Generation from XSD wich contains only types declarations doesn't work [6941]</title><link>http://xsd2code.codeplex.com/workitem/6941</link><description>1. Create XSD files wich contains only complextype and simpletype declarations &amp;#40;without  any elements declarations&amp;#41;.&lt;br /&gt;2. Run Xsd2Code&lt;br /&gt;Result&amp;#58; File with empty namespace generated&lt;br /&gt;Comments: ** Comment from web user: tadamson ** &lt;p&gt;changeset 54081 only seems to generate for complextype declarations but not simpletype. In my case I needed it for enumerations:&lt;/p&gt;&lt;p&gt;Xsd2Code.Library/Generator.cs:132:&lt;br&gt;```&lt;br&gt;foreach (XmlSchemaComplexType complex in xsd.Items.OfType&amp;lt;XmlSchemaComplexType&amp;gt;())&lt;br&gt;{&lt;br&gt;    var mapping = importer.ImportSchemaType(complex.QualifiedName);&lt;br&gt;    exporter.ExportTypeMapping(mapping);&lt;br&gt;}&lt;br&gt;```&lt;/p&gt;&lt;p&gt;This modification seems to work?:&lt;br&gt;```&lt;br&gt;foreach (XmlSchemaType type in xsd.Items.OfType&amp;lt;XmlSchemaType&amp;gt;())&lt;br&gt;{&lt;br&gt;    var mapping = importer.ImportSchemaType(type.QualifiedName);&lt;br&gt;    exporter.ExportTypeMapping(mapping);&lt;br&gt;}&lt;br&gt;```&lt;br&gt;&lt;/p&gt;</description><author>tadamson</author><pubDate>Tue, 21 May 2013 05:58:33 GMT</pubDate><guid isPermaLink="false">Commented Issue: Generation from XSD wich contains only types declarations doesn't work [6941] 20130521055833A</guid></item><item><title>Closed Issue: Element are automatically added when using type of collection 'List' [6709]</title><link>http://xsd2code.codeplex.com/workitem/6709</link><description>I have noticed that when I serialize and then immediately deserialize, optional elements that were not present in the input, may be added to the output. This only happens when I generate the class using tpe of collection &amp;#39;List&amp;#39;, not when I use &amp;#39;Array&amp;#39;. For me, this is undesirable behaviour.&lt;br /&gt;Here is an example that illustrates the behaviour&amp;#58;&lt;br /&gt;Input&amp;#58;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;utf-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;test &amp;#47;&amp;#62;&lt;br /&gt;Output Array&amp;#58;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;test xmlns&amp;#58;xsi&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.w3.org&amp;#47;2001&amp;#47;XMLSchema-instance&amp;#34; xmlns&amp;#58;xsd&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.w3.org&amp;#47;2001&amp;#47;XMLSchema&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;Output List&amp;#58;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;test xmlns&amp;#58;xsi&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.w3.org&amp;#47;2001&amp;#47;XMLSchema-instance&amp;#34; xmlns&amp;#58;xsd&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.w3.org&amp;#47;2001&amp;#47;XMLSchema&amp;#34;&amp;#62;&lt;br /&gt;  &amp;#60;optionalInt&amp;#62;&lt;br /&gt;    &amp;#60;value&amp;#62;0&amp;#60;&amp;#47;value&amp;#62;&lt;br /&gt;  &amp;#60;&amp;#47;optionalInt&amp;#62;&lt;br /&gt;  &amp;#60;optionalString &amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;test&amp;#62;&lt;br /&gt;OptionalInt has a minoccurs of 0, value has a minoccurs of 1.&lt;br /&gt;&amp;#160;&lt;br /&gt;I think it has something to do with the fact that there are required elements below optional elements.&lt;br /&gt;&amp;#160;&lt;br /&gt;I used the following invocation of xsd2code&amp;#58;&lt;br /&gt;xsd2code.exe &amp;#34;.&amp;#92;TestOptionalElement.xsd&amp;#34; TestOptional &amp;#34;TestOptionalElement.cs&amp;#34; CS List noDataBinding HidePrivateInIde&lt;br /&gt;&amp;#160;&lt;br /&gt;See attachment for a complete package to reproduce the behaviour&amp;#58;&lt;br /&gt;1. Schema&lt;br /&gt;2. Image of the schema&lt;br /&gt;3. Sample project &amp;#40;.Net 2005&amp;#41;&lt;br /&gt;4. Command file to generate the class&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:41 GMT</pubDate><guid isPermaLink="false">Closed Issue: Element are automatically added when using type of collection 'List' [6709] 20130516121341P</guid></item><item><title>Closed Issue: Problems with inherited schema types in referenced files [6938]</title><link>http://xsd2code.codeplex.com/workitem/6938</link><description>Condition&amp;#58; We have ab.xsd file which contains two complex types A and B where B inherited from A and this file referenced by file which contains element of type A.&lt;br /&gt;Problem&amp;#58; Generated class A doesn&amp;#39;t have XmlIncludeAttribute for type B.&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#160;&lt;br /&gt;I fixed this problem locally and will try to send patch.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:41 GMT</pubDate><guid isPermaLink="false">Closed Issue: Problems with inherited schema types in referenced files [6938] 20130516121341P</guid></item><item><title>Closed Issue: Setup does not place addin file correctly if My Documents folder is moved [6988]</title><link>http://xsd2code.codeplex.com/workitem/6988</link><description>Hi,&lt;br /&gt;&amp;#160;&lt;br /&gt;Thanks for the cool tool&amp;#33; &lt;br /&gt;&amp;#160;&lt;br /&gt;I changed the location of My Documents using the right click &amp;#34;move&amp;#34; option.&lt;br /&gt;However, the setup still placed the addin file in the old location which made the addin not appear in VS.&lt;br /&gt;Changing the file location fixed the problem.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:40 GMT</pubDate><guid isPermaLink="false">Closed Issue: Setup does not place addin file correctly if My Documents folder is moved [6988] 20130516121340P</guid></item><item><title>Closed Issue: make XmlSerializer static in base class [7914]</title><link>http://xsd2code.codeplex.com/workitem/7914</link><description>- Make XmlSerializer static&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt; public partial class EntityBase&amp;#60;T&amp;#62;    &amp;#123;     &lt;br /&gt;    static readonly XmlSerializer Serializer &amp;#61; new XmlSerializer&amp;#40;typeof&amp;#40;T&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;Then whenever you need to serialize&amp;#47;deserialize, just use that static serializer&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:38 GMT</pubDate><guid isPermaLink="false">Closed Issue: make XmlSerializer static in base class [7914] 20130516121338P</guid></item><item><title>Closed Issue: Stackoverflow in constructor (circular class reference) [8018]</title><link>http://xsd2code.codeplex.com/workitem/8018</link><description>With this schema, Xsd2Code generates a circular reference in constructor.&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;utf-8&amp;#34; &amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#33;--Created with Liquid XML Studio - FREE Community Edition &amp;#40;http&amp;#58;&amp;#47;&amp;#47;www.liquid-technologies.com&amp;#41;--&amp;#62;&lt;br /&gt;&amp;#60;xs&amp;#58;schema xmlns&amp;#58;mstns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;tempuri.org&amp;#47;CircularClassReference.xsd&amp;#34; elementFormDefault&amp;#61;&amp;#34;qualified&amp;#34; targetNamespace&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;tempuri.org&amp;#47;CircularClassReference.xsd&amp;#34; id&amp;#61;&amp;#34;CircularClassReference&amp;#34; xmlns&amp;#58;xs&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.w3.org&amp;#47;2001&amp;#47;XMLSchema&amp;#34;&amp;#62;&lt;br /&gt;  &amp;#60;xs&amp;#58;complexType name&amp;#61;&amp;#34;Circular&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;xs&amp;#58;sequence&amp;#62;&lt;br /&gt;      &amp;#60;xs&amp;#58;element name&amp;#61;&amp;#34;circular&amp;#34; type&amp;#61;&amp;#34;mstns&amp;#58;Circular&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;xs&amp;#58;sequence&amp;#62;&lt;br /&gt;  &amp;#60;&amp;#47;xs&amp;#58;complexType&amp;#62;&lt;br /&gt;  &amp;#60;xs&amp;#58;element name&amp;#61;&amp;#34;Root&amp;#34; type&amp;#61;&amp;#34;mstns&amp;#58;Circular&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;xs&amp;#58;schema&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;Code &amp;#58; &lt;br /&gt;&amp;#160;&lt;br /&gt;public partial class Circular &amp;#58; EntityBase&amp;#60;Circular&amp;#62;&lt;br /&gt;    &amp;#123;&lt;br /&gt;&amp;#160;&lt;br /&gt;        private Circular circularField&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;        public Circular&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            if &amp;#40;&amp;#40;this.circularField &amp;#61;&amp;#61; null&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                this.circularField &amp;#61; new Circular&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;        public Circular circular&lt;br /&gt;        &amp;#123;&lt;br /&gt;            get&lt;br /&gt;            &amp;#123;&lt;br /&gt;                return this.circularField&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            set&lt;br /&gt;            &amp;#123;&lt;br /&gt;                this.circularField &amp;#61; value&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;    &amp;#125;&lt;br /&gt;</description><author>reokubo</author><pubDate>Thu, 16 May 2013 12:13:37 GMT</pubDate><guid isPermaLink="false">Closed Issue: Stackoverflow in constructor (circular class reference) [8018] 20130516121337P</guid></item><item><title>Closed Issue: Propertyname are wrongly set to non existing members in ctor when using auto properties and List collections [8094]</title><link>http://xsd2code.codeplex.com/workitem/8094</link><description>When generating targeting net35 and setting auto props true and using List as collections the generator creates constructur code that mistakenly nullchecks and tries to init a non existing myAutoPropertyNameMember member. Should nullcheck &amp;#40;is this necissary&amp;#63;&amp;#41; and init the autoproperty with public name, i.e. MyAutoPropertyName.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:37 GMT</pubDate><guid isPermaLink="false">Closed Issue: Propertyname are wrongly set to non existing members in ctor when using auto properties and List collections [8094] 20130516121337P</guid></item><item><title>Closed Issue: Instantiation of optional elements [8118]</title><link>http://xsd2code.codeplex.com/workitem/8118</link><description>For optional items, an element is incorrectly instantiated in the constructor of the created code. &lt;br /&gt;&amp;#160;&lt;br /&gt;For example&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#60;xsd&amp;#58;complexType name&amp;#61;&amp;#34;requestType&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;xsd&amp;#58;annotation&amp;#62;&lt;br /&gt;      &amp;#60;xsd&amp;#58;documentation&amp;#62;Configure the parameters for the search query&amp;#60;&amp;#47;xsd&amp;#58;documentation&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;xsd&amp;#58;annotation&amp;#62;&lt;br /&gt;    &amp;#60;xsd&amp;#58;sequence&amp;#62;&lt;br /&gt;      &amp;#60;xsd&amp;#58;element name&amp;#61;&amp;#34;Context&amp;#34; type&amp;#61;&amp;#34;typs&amp;#58;ContextType&amp;#34; minOccurs&amp;#61;&amp;#34;0&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;      &amp;#60;xsd&amp;#58;element name&amp;#61;&amp;#34;SearchConfig&amp;#34; type&amp;#61;&amp;#34;SearchConfigType&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;      &amp;#60;xsd&amp;#58;element name&amp;#61;&amp;#34;SearchParams&amp;#34; type&amp;#61;&amp;#34;SearchParamsType&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;xsd&amp;#58;sequence&amp;#62;&lt;br /&gt;  &amp;#60;&amp;#47;xsd&amp;#58;complexType&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;Creates&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;       public requestType&amp;#40;&amp;#41; &amp;#123;&lt;br /&gt;            if &amp;#40;&amp;#40;this.searchParamsField &amp;#61;&amp;#61; null&amp;#41;&amp;#41; &amp;#123;&lt;br /&gt;                this.searchParamsField &amp;#61; new SearchParamsType&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            if &amp;#40;&amp;#40;this.searchConfigField &amp;#61;&amp;#61; null&amp;#41;&amp;#41; &amp;#123;&lt;br /&gt;                this.searchConfigField &amp;#61; new SearchConfigType&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            if &amp;#40;&amp;#40;this.contextField &amp;#61;&amp;#61; null&amp;#41;&amp;#41; &amp;#123;&lt;br /&gt;                this.contextField &amp;#61; new ContextType&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;For the contextField, this instantiation should not exist.&lt;br /&gt;&amp;#160;&lt;br /&gt;I&amp;#39;ve tried checking the source code, but could not find an easy way to disable this. Alternatively, I&amp;#39;ve build a version that does not instantiate members at all.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:37 GMT</pubDate><guid isPermaLink="false">Closed Issue: Instantiation of optional elements [8118] 20130516121337P</guid></item><item><title>Closed Issue: List combined with Automatic Properties is failing [8943]</title><link>http://xsd2code.codeplex.com/workitem/8943</link><description>Appears that in place of what should be List&amp;#60;myType&amp;#62;&amp;#123;get&amp;#59;set&amp;#59;&amp;#125;, &lt;br /&gt;I am seeing instead&amp;#58; List&amp;#39;1&amp;#123;get&amp;#59;set&amp;#59;&amp;#125;&lt;br /&gt;and the original &amp;#34;private&amp;#34; vars are not removed- ie, private List&amp;#60;myType&amp;#62;&amp;#59; still exists and was not removed. &amp;#40;tho the private vars do have the right types, and dont use the weird List&amp;#39;1 form&amp;#41;&lt;br /&gt;</description><author>boomhauer</author><pubDate>Thu, 16 May 2013 12:13:36 GMT</pubDate><guid isPermaLink="false">Closed Issue: List combined with Automatic Properties is failing [8943] 20130516121336P</guid></item><item><title>Closed Issue: Need switch: All Automatic properties [9025]</title><link>http://xsd2code.codeplex.com/workitem/9025</link><description>Following the issues, i have a feature request&amp;#58; No initialisation in constructor or Get parameters.&lt;br /&gt;&amp;#160;&lt;br /&gt;For example, when i have this class &amp;#40;simplified&amp;#41;&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;public class Root&lt;br /&gt;&amp;#123;&lt;br /&gt;   public List&amp;#60;Child&amp;#62; Children&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;And I receive this xml&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#60;root&amp;#47;&amp;#62;&lt;br /&gt;&amp;#160;&lt;br /&gt;I will have a problem detecting if any empty collection was passed, or if the collection was passed at all &amp;#40;and that is something completely different&amp;#41;.&lt;br /&gt;&amp;#160;&lt;br /&gt;Also, when creating object structures, I don&amp;#39;t want objects to be instantiated automatically &amp;#40;on get accessors&amp;#41;, because that would generate the same randomness.&lt;br /&gt;&amp;#160;&lt;br /&gt;So please&amp;#58; Automatic properties for all.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:36 GMT</pubDate><guid isPermaLink="false">Closed Issue: Need switch: All Automatic properties [9025] 20130516121336P</guid></item><item><title>Closed Issue: Xsd2Code Generates Error filled Visual Basic Code. [9029]</title><link>http://xsd2code.codeplex.com/workitem/9029</link><description>Xsd2Code Generates Error filled Visual Basic Code.  Diagnosed that it uses C&amp;#35;&amp;#47;CPP CodeSnippetExpressions. Specifically, CodeDomHelper.GetDispose &amp;#40; &amp;#33;&amp;#61; null vs IsNot Nothing&amp;#41;.&lt;br /&gt;CodeExtension.CreateInstanceCodeStatement properly handles equality test in CodeDom Neutral Way.&lt;br /&gt;Lots of Other CodeSnippetExpressionsare C&amp;#35;&amp;#47;CPP Specific.&lt;br /&gt;&amp;#160;&lt;br /&gt;Steps to Reproduce - Create VisualBasic ClassLibrary generate with all options on. Look at errors.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:36 GMT</pubDate><guid isPermaLink="false">Closed Issue: Xsd2Code Generates Error filled Visual Basic Code. [9029] 20130516121336P</guid></item><item><title>Closed Issue: incorrect doc text for GenerateCloneMethod [10042]</title><link>http://xsd2code.codeplex.com/workitem/10042</link><description>In the CustomTool, dialog, the help text at the bottom of the window for GenerateCloneMethod appears to be wrong -- looks like it was cut&amp;#47;pasted from IncludeSerializeMethod.&lt;br /&gt;&amp;#160;&lt;br /&gt;And while you&amp;#39;re in there, the text for IncludeSerializeMethod has a typo&amp;#58; &amp;#34;nust&amp;#34; -&amp;#62; &amp;#34;must&amp;#34;&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:36 GMT</pubDate><guid isPermaLink="false">Closed Issue: incorrect doc text for GenerateCloneMethod [10042] 20130516121336P</guid></item><item><title>Closed Issue: XmlElementAttribute is generated with a missing comma. [11335]</title><link>http://xsd2code.codeplex.com/workitem/11335</link><description>The generated code looks like this&amp;#58;&lt;br /&gt;&amp;#91;System.Xml.Serialization.XmlElementAttribute&amp;#40;&amp;#34;container&amp;#34;typeof&amp;#40;T_OptionContainer&amp;#41;&amp;#41;&amp;#93;&lt;br /&gt;&amp;#160;&lt;br /&gt;It is missing a comma between the &amp;#34;container&amp;#34;    and     typeof&amp;#40;T_OptionContainer&amp;#41;&amp;#41;&amp;#93;&lt;br /&gt;This gives me an exception&amp;#58;   &lt;br /&gt;Invalid token &amp;#39;typeof&amp;#39; in class, struct, or interface member declaration&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:35 GMT</pubDate><guid isPermaLink="false">Closed Issue: XmlElementAttribute is generated with a missing comma. [11335] 20130516121335P</guid></item><item><title>Closed Issue: vs2010 menu item missing [11548]</title><link>http://xsd2code.codeplex.com/workitem/11548</link><description>the right click menu item for compiling xsd files is missing in my vs2010 installation&lt;br /&gt;&amp;#160;&lt;br /&gt;Windows 7 64 bit&lt;br /&gt;&amp;#160;&lt;br /&gt;visual studio 2010 ultimate&lt;br /&gt;&amp;#160;&lt;br /&gt;xsd2code 3.3 beta 2 for vs2010&lt;br /&gt;</description><author>Snympi</author><pubDate>Thu, 16 May 2013 12:13:35 GMT</pubDate><guid isPermaLink="false">Closed Issue: vs2010 menu item missing [11548] 20130516121335P</guid></item><item><title>Closed Issue: xml annotations error [11558]</title><link>http://xsd2code.codeplex.com/workitem/11558</link><description>my output generated this, which doesnt compile&lt;br /&gt;    &amp;#91;System.Xml.Serialization.XmlElementAttribute&amp;#40;&amp;#34;doubleValues&amp;#34;typeof&amp;#40;double&amp;#41;&amp;#41;&amp;#93;&lt;br /&gt;    &amp;#91;System.Xml.Serialization.XmlElementAttribute&amp;#40;&amp;#34;stringValues&amp;#34;typeof&amp;#40;string&amp;#41;&amp;#41;&amp;#93;&lt;br /&gt;    public object Item &amp;#123;get&amp;#59; set&amp;#59;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;i bleieve it should be&amp;#58; &lt;br /&gt;    &amp;#91;System.Xml.Serialization.XmlElementAttribute&amp;#40;&amp;#34;doubleValues&amp;#34;, typeof&amp;#40;double&amp;#41;&amp;#41;&amp;#93;&lt;br /&gt;    &amp;#91;System.Xml.Serialization.XmlElementAttribute&amp;#40;&amp;#34;stringValues&amp;#34;, typeof&amp;#40;string&amp;#41;&amp;#41;&amp;#93;&lt;br /&gt;    public object Item &amp;#123;get&amp;#59; set&amp;#59;&amp;#125;&lt;br /&gt;</description><author>boomhauer</author><pubDate>Thu, 16 May 2013 12:13:34 GMT</pubDate><guid isPermaLink="false">Closed Issue: xml annotations error [11558] 20130516121334P</guid></item><item><title>Closed Issue: incorrect auto properties [11562]</title><link>http://xsd2code.codeplex.com/workitem/11562</link><description>I have some xsd&amp;#39;s which Ive told to generate auto properties, which it does for most of the strings. but there are a few strings which still get gnereated with &amp;#34;normal&amp;#34; property style, but they lack the internal variable definiteioin. so they fail to compile. these seems to show up when xml annotation is also turned on.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:34 GMT</pubDate><guid isPermaLink="false">Closed Issue: incorrect auto properties [11562] 20130516121334P</guid></item><item><title>Closed Issue: SerializableAttribute error in silverlight. [11761]</title><link>http://xsd2code.codeplex.com/workitem/11761</link><description>Silverilght version also has SerializableAttribute - it&amp;#39;s an error.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:33 GMT</pubDate><guid isPermaLink="false">Closed Issue: SerializableAttribute error in silverlight. [11761] 20130516121333P</guid></item><item><title>Closed Issue: The GenericBaseClass/BaseClassName field is lost every time you close the dialog. [13557]</title><link>http://xsd2code.codeplex.com/workitem/13557</link><description>The GenericBaseClass&amp;#47;BaseClassName field is lost every time you close the dialog.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:31 GMT</pubDate><guid isPermaLink="false">Closed Issue: The GenericBaseClass/BaseClassName field is lost every time you close the dialog. [13557] 20130516121331P</guid></item><item><title>Closed Issue: VS2010SP1 : Difference between "Xsd2Code Generation" and "Run Custom Tool" [13966]</title><link>http://xsd2code.codeplex.com/workitem/13966</link><description>The Xsd2Code Generation generates a &amp;#39;.designer.cs&amp;#39; file and the &amp;#39;Run Custom Tool&amp;#39; creates a &amp;#39;.Designer.cs&amp;#39; file.&lt;br /&gt;&amp;#160;&lt;br /&gt;The &amp;#39;.Designer.cs&amp;#39; file is recognized by VS2010, this file becomes a child file from the main XSD file. Which is correct.&lt;br /&gt;But the &amp;#39;.designer.cs&amp;#39; is not correctly recognized by VS2010, so this file is just listed at the same level as the XSD file.&lt;br /&gt;&amp;#160;&lt;br /&gt;Probably this code is wrong&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;Utility.cs&lt;br /&gt;&amp;#160;&lt;br /&gt; public static string GetOutputFilePath&amp;#40;string xsdFilePath, CodeDomProvider provider&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#42; DCM REMOVED&amp;#58; CodeDom Provider has FileExtension&lt;br /&gt;            var language &amp;#61; GetGenerationLanguage&amp;#40;provider&amp;#41;&amp;#59;&lt;br /&gt;            return GetOutputFilePath&amp;#40;xsdFilePath, language&amp;#41;&amp;#59;&lt;br /&gt;             &amp;#42;&amp;#47; &lt;br /&gt;            return Path.ChangeExtension&amp;#40;xsdFilePath, &amp;#34;.designer.&amp;#34; &amp;#43; provider.FileExtension&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:31 GMT</pubDate><guid isPermaLink="false">Closed Issue: VS2010SP1 : Difference between "Xsd2Code Generation" and "Run Custom Tool" [13966] 20130516121331P</guid></item><item><title>Closed Issue: CollectionObjectType = DefinedType Fails To Generate Collection Classes [14391]</title><link>http://xsd2code.codeplex.com/workitem/14391</link><description>When you set the CollectionObjectType &amp;#61; DefinedType and set the CollectionBase setting, the actual Collection classes never get generated.  Digging through the codebase I found that the CollectionTypes SortedList object is cleared ever iteration when creating the normal classes.  I commented out the lines that cleared the SortedList and it started working.&lt;br /&gt;</description><author>pcabanel</author><pubDate>Thu, 16 May 2013 12:13:31 GMT</pubDate><guid isPermaLink="false">Closed Issue: CollectionObjectType = DefinedType Fails To Generate Collection Classes [14391] 20130516121331P</guid></item></channel></rss>