azure-pipelines-tasks-webdeployment-common 4.253.0 → 4.254.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -253,14 +253,14 @@ function updateXmlConnectionStringsNodeAttribute(xmlDomNode, variableMap, replac
|
|
|
253
253
|
var connectionStringName = xmlDomNode.getAttribute("name");
|
|
254
254
|
if (connectionStringName && variableMap[xmlDomNode.getAttribute("name")]) {
|
|
255
255
|
let ConfigFileConnStringTokenName = ConfigFileConnStringToken + '(' + connectionStringName + ')';
|
|
256
|
-
|
|
256
|
+
console.log(tl.loc('SubstitutingConnectionStringValue', connectionStringName, ConfigFileConnStringTokenName));
|
|
257
257
|
xmlDomNode.setAttribute("connectionString", ConfigFileConnStringTokenName);
|
|
258
258
|
replacableTokenValues[ConfigFileConnStringTokenName] = variableMap[connectionStringName].replace(/"/g, "'");
|
|
259
259
|
isSubstitutionApplied = true;
|
|
260
260
|
}
|
|
261
261
|
else if (variableMap["connectionString"] != undefined) {
|
|
262
262
|
let ConfigFileConnStringTokenName = ConfigFileConnStringToken + '(connectionString)';
|
|
263
|
-
|
|
263
|
+
console.log(tl.loc('SubstitutingConnectionStringValue', connectionStringName, ConfigFileConnStringTokenName));
|
|
264
264
|
xmlDomNode.setAttribute("connectionString", ConfigFileConnStringTokenName);
|
|
265
265
|
replacableTokenValues[ConfigFileConnStringTokenName] = variableMap["connectionString"].replace(/"/g, "'");
|
|
266
266
|
isSubstitutionApplied = true;
|