Advertisement
Guest User

Untitled

a guest
Jan 20th, 2011
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.93 KB | None | 0 0
  1. <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  2.   <appSettings>
  3.     <add xdt:Transform="Remove" xdt:Locator="Match(key)" key="foo" />
  4.     <add xdt:Transform="Remove" xdt:Locator="Match(key)"  key="Environment" />
  5.   </appSettings>
  6.  
  7.   <connectionStrings  xdt:Transform="Replace">
  8.     <add xdt:Transform="Remove"   name="myConnstring"  xdt:Locator="Match(name)" />
  9.   </connectionStrings>
  10.  
  11.   <system.web>
  12.     <authentication mode="Forms"  xdt:Transform="Replace">
  13.       <forms name="Auth" loginUrl="~/login.aspx" defaultUrl="~/default.aspx" requireSSL="false">
  14.         <credentials passwordFormat="Clear">
  15.           <user name="prod" password="prod"/>    
  16.         </credentials>
  17.       </forms>
  18.     </authentication>
  19.     <authorization  xdt:Transform="Replace">
  20.       <deny users="?" />
  21.     </authorization>
  22.     <customErrors mode="Off"  xdt:Transform="Replace" />
  23.   </system.web>
  24. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement