up vote 9 down vote favorite
7
share [g+] share [fb]

When editing .NET config files (app.config, web.config, etc) in Visual Studio, I get Visual Studio's intellisense to guide me when choosing my application's settings. If I add a custom configuration section, how can I enable intellisense for my custom settings? I'm sure there must be an easy answer to this, but a cursory Google search didn't give me any help.

Thanks!

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

You need to create an XSD file for your custom settings and copy it to the schema directory of your visual Studio install. For 2005, this is: %ProgramFiles%\Microsoft Visual Studio 8\XML\Schemas

Here some information on this. http://blogs.msdn.com/astebner/archive/2005/12/07/501466.aspx

link|improve this answer
Excellent. Thanks! – Kevin Babcock Apr 13 '09 at 4:54
feedback

If you do not want to modify your Visual Studio files or copy anything into the Visual Studio folder, you can add the xsd file to your project, open your config file and select "Schemas" in the Properties Window (click the ...).

Properties

link|improve this answer
3  
+1 The accepted solution seems widely practiced, but you shouldn't do this unless the schema changes are standard and useful to all the Visual Studio projects that may be created on your computer.(msdn.microsoft.com/en-us/library/ms255821.aspx) – Paul Feb 5 '10 at 16:06
feedback

As the other answers say, you need to provide an XML Schema document for your custom configuration section. There's no need to add the .xsd schema file to some global directory; you can reference it directly from your custom section in the App.config file:

<configuration>

  <!-- make the custom section known to .NET's configuration manager -->
  <configSections>
    <section name="customSection" type="..." />
  </configSections>

  <!-- your custom section -->
  <customSection xmlns="http://tempuri.org/customSection.xsd"
                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xsi:noNamespaceSchemaLocation="customSection.xsd">
    ...
  </customSection>

<configuration>

The xmlns attribute is merely there to set a default namespace, so that you don't need to set it on your customSection element and all of its child elements.

The customSection.xsd contains the schema that will be used by IntelliSense, for example:

<xs:schema id="customSectionSchema"
           targetNamespace="http://tempuri.org/customSection.xsd"
           elementFormDefault="qualified"
           xmlns="http://tempuri.org/customSection.xsd"
           xmlns:mstns="http://tempuri.org/customSection.xsd"
           xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="customSection">
    ...
  </xs:element>
</xs:schema>
link|improve this answer
What TYPE am I supposed to put in section.type? I guessed and put "xmlns" in there and it works...but I'm pretty sure that's wrong. – Prisoner ZERO Feb 15 '11 at 14:28
@Prisoner, you're supposed to put a (at least assembly-qualified) .NET type name à la "Namespace.Class, Assembly" there. The framework will instantiate this type and use it whenever it wants to parse the custom configuration section. Choose any of a few pre-defined section handler classes, or any custom class that implements the IConfigurationSectionHandler interface. For further info, google for something like "App.config custom section handlers", or read an article on the topic such as this Code Project article to get started. – stakx Apr 27 '11 at 20:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.