File: DotNetConsoleTests.exe.config

package info (click to toggle)
nini 1.1.0%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,776 kB
  • ctags: 882
  • sloc: cs: 7,649; xml: 2,945; makefile: 62; ansic: 7
file content (15 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<configuration>
	<configSections>
		<section name="Pets"
		type="System.Configuration.NameValueSectionHandler" />
	</configSections>

	<appSettings>
		<add key="App Name" value="My App" />
	</appSettings>

	<Pets>
		<add key="dog" value="rover" />
		<add key="cat" value="muffy" />
	</Pets>
</configuration>