Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Web.Release.config 1.3KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
  3. <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  4. <!--
  5. In the example below, the "SetAttributes" transform will change the value of
  6. "connectionString" to use "ReleaseSQLServer" only when the "Match" locator
  7. finds an attribute "name" that has a value of "MyDB".
  8. <connectionStrings>
  9. <add name="MyDB"
  10. connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
  11. xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
  12. </connectionStrings>
  13. -->
  14. <system.web>
  15. <compilation xdt:Transform="RemoveAttributes(debug)" />
  16. <!--
  17. In the example below, the "Replace" transform will replace the entire
  18. <customErrors> section of your web.config file.
  19. Note that because there is only one customErrors section under the
  20. <system.web> node, there is no need to use the "xdt:Locator" attribute.
  21. <customErrors defaultRedirect="GenericError.htm"
  22. mode="RemoteOnly" xdt:Transform="Replace">
  23. <error statusCode="500" redirect="InternalError.htm"/>
  24. </customErrors>
  25. -->
  26. </system.web>
  27. </configuration>