Questions tagged [config-designer-csd]

Configuration Section Designer: A free/OSS Visual Studio add-in that allows you to graphically design .NET Configuration Sections and automatically generates all the required code and a schema definition (XSD) for them.

The Configuration Section Designer tool (Visual Studio add-in) facilitates the graphical design of the model for a .NET configuration file (app.config / web.config etc).

It generates the code that describes the model by leveraging the System.Configuration and ConfigurationManager capabilities of the .NET ecosystem.

The tool, documentation and source code can be found at http://csd.codeplex.com/

enter image description here

6 questions
4
votes
3 answers

Configuration Section Designer alternative

The project Configuration Section Designer http://csd.codeplex.com is such a great tool but now I've moved to VS2010 (forced actually) and it doesn't support 2010. I use this tool a great deal but now I can't and I have a ton of config stuff to…
2
votes
1 answer

.NET Configuration Section Designer - Where is my collection?

I am using the Configuration Section Designer for .NET to build a simple ConfigurationElementCollection. It appears that everything builds just fine and the code is automatically generated since the sub-elements are visible with…
John Rasch
  • 62,489
  • 19
  • 106
  • 139
2
votes
1 answer

.NET CSD Configuration Collection of type 'AddRemoveClearMap': why do children need a key property?

I'm using Configuration Section Designer (CSD) to manage my .NET app.config file structure, and so far I'm lovin' it. Problem is, I need a collection of items that doesn't lend itself to having a key. This is a list of permissions having a type…
Cristian Diaconescu
  • 34,633
  • 32
  • 143
  • 233
1
vote
1 answer

Import XSD targetNameSpace From another Visual Studio project

I have a VB solution with many VB projects in it. One of them, the "Core" project, has a .xsd file in it with a targetNameSpace of urn:CustomNamespace. In the Core project, I am able to import the xsd namespace by doing the following: Imports…
0
votes
1 answer

Configuration section designer custom elements

I'm using Configuration Section Designer (CSD) to manage my ASP.NET site services and so far I'm lovin' it. I created the section, collection and collection item (attributes only) easy. The problem is how to create 'Json' Element in the…
0
votes
1 answer

Configuration Section Designer Tool - Obtaining XML From Objects

I am using the CSD tool to create custom configuration sections in my asp.net 3.5 web application. I have no problem with setting up the section, elements, and collections. However, when I create new instances of these to represent what I need to…