code-example
Version:
Language code example.
9 lines (8 loc) • 732 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var code = "<?xml version=\"1.0\"?>\n<configuration xmlns:xdt=\"http://schemas.microsoft.com/XML-Document-Transform\">\n <connectionStrings>\n <add name=\"MyDB\" \n connectionString=\"value for the deployed Web.config file\" \n xdt:Transform=\"SetAttributes\" xdt:Locator=\"Match(name)\"/>\n </connectionStrings>\n <system.web>\n <customErrors defaultRedirect=\"GenericError.htm\"\n mode=\"RemoteOnly\" xdt:Transform=\"Replace\">\n <error statusCode=\"500\" redirect=\"InternalError.htm\"/>\n </customErrors>\n </system.web>\n</configuration>";
var _default = code;
exports.default = _default;