Advertisement
Guest User

Untitled

a guest
Nov 10th, 2011
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.76 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3.     <configSections>
  4.         <section name="General" type="System.Configuration.NameValueSectionHandler" />
  5.         <section name="Repository" type="System.Configuration.NameValueSectionHandler" />
  6.         <section name="Language" type="System.Configuration.NameValueSectionHandler" />
  7.     </configSections>
  8.     <General>
  9.         <add key="Language" value="enUS" />
  10.     </General>
  11.     <Repository>   
  12.         <add key="RepositoryPath" value="C:\data\code\projects\cs\gitobserver" />
  13.     </Repository>
  14.     <Language>
  15.         <configSections>
  16.             <section name="enUS" type="System.Configuration.NameValueSectionHandler" />
  17.         </configSections>
  18.         <enUS>
  19.             <add key="LabelRepositoryPath" value="Repository location:" />
  20.         </enUS>
  21.     </Language>
  22. </configuration>
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement