Advertisement
Guest User

Untitled

a guest
Jan 20th, 2011
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.03 KB | None | 0 0
  1. <?xml version="1.0"?>
  2.  
  3. <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  4.  
  5.   <appSettings xdt:Transform="Replace">
  6.     <add key="foo" value="test-debug"/>
  7.     <add key="Environment" value="TEST">/
  8.   </appSettings>
  9.   <connectionStrings>
  10.     <add name="myConnstring"
  11.            connectionString="Data Source=test;Initial Catalog=test;User ID=test;Password=test"
  12.            providerName="System.Data.SqlClient"
  13.            xdt:Transform="SetAttributes" xdt:Locator="Match(name)" />    
  14.    
  15.     </connectionStrings>
  16.  
  17.   <system.web>  
  18.     <authentication mode="Forms"  xdt:Transform="Replace">
  19.       <forms name="Auth" loginUrl="~/login.aspx" defaultUrl="~/default.aspx" requireSSL="false">
  20.         <credentials passwordFormat="Clear">
  21.           <user name="test" password="test"/>
  22.         </credentials>
  23.       </forms>
  24.     </authentication>
  25.     <authorization  xdt:Transform="Replace">
  26.     </authorization>
  27.     <customErrors mode="Off"  xdt:Transform="Replace" />    
  28.   </system.web>
  29. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement