本文整理汇总了TypeScript中webdeployment-common/xmlvariablesubstitutionutility.js.default类的典型用法代码示例。如果您正苦于以下问题:TypeScript js.default类的具体用法?TypeScript js.default怎么用?TypeScript js.default使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了js.default类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: fileTransformations
export function fileTransformations(isFolderBasedDeployment: boolean, JSONFiles: any, xmlTransformation: boolean, xmlVariableSubstitution: boolean, folderPath: string) {
if(xmlTransformation) {
var environmentName = tl.getVariable('Release.EnvironmentName');
if(tl.osType().match(/^Win/)) {
var transformConfigs = ["Release.config"];
if(environmentName && environmentName != 'Release') {
transformConfigs.push(environmentName + ".config");
}
xdtTransformationUtility.basicXdtTransformation(folderPath, transformConfigs);
console.log(tl.loc("XDTTransformationsappliedsuccessfully"));
}
else {
throw new Error(tl.loc("CannotPerformXdtTransformationOnNonWindowsPlatform"));
}
}
if(xmlVariableSubstitution) {
xmlSubstitutionUtility.substituteAppSettingsVariables(folderPath, isFolderBasedDeployment);
console.log(tl.loc('XMLvariablesubstitutionappliedsuccessfully'));
}
if(JSONFiles.length != 0) {
jsonSubstitutionUtility.jsonVariableSubstitution(folderPath, JSONFiles);
console.log(tl.loc('JSONvariablesubstitutionappliedsuccessfully'));
}
}
开发者ID:DarqueWarrior,项目名称:vsts-tasks,代码行数:27,代码来源:fileTransformationsUtility.ts
示例2: advancedFileTransformations
export function advancedFileTransformations(isFolderBasedDeployment: boolean, targetFiles: any, xmlTransformation: boolean, variableSubstitutionFileFormat: string, folderPath: string, transformationRules: any) {
if(xmlTransformation) {
if(!tl.osType().match(/^Win/)) {
throw Error(tl.loc("CannotPerformXdtTransformationOnNonWindowsPlatform"));
}
else {
let isTransformationApplied: boolean = true;
if(transformationRules.length > 0) {
transformationRules.forEach(function(rule) {
var args = ParameterParser.parse(rule);
if(Object.keys(args).length < 2 || !args["transform"] || !args["xml"]) {
tl.error(tl.loc("MissingArgumentsforXMLTransformation"));
}
else if(Object.keys(args).length > 2) {
isTransformationApplied = xdtTransformationUtility.specialXdtTransformation(folderPath, args["transform"].value, args["xml"].value, args["result"].value) && isTransformationApplied;
}
else {
isTransformationApplied = xdtTransformationUtility.specialXdtTransformation(folderPath, args["transform"].value, args["xml"].value) && isTransformationApplied;
}
});
}
else{
var environmentName = tl.getVariable('Release.EnvironmentName');
let transformConfigs = ["Release.config"];
if(environmentName && environmentName.toLowerCase() != 'release') {
transformConfigs.push(environmentName + ".config");
}
isTransformationApplied = xdtTransformationUtility.basicXdtTransformation(folderPath, transformConfigs);
}
if(isTransformationApplied) {
console.log(tl.loc("XDTTransformationsappliedsuccessfully"));
}
}
}
if(variableSubstitutionFileFormat === "xml") {
if(targetFiles.length == 0) {
xmlSubstitutionUtility.substituteAppSettingsVariables(folderPath, isFolderBasedDeployment);
}
else {
targetFiles.forEach(function(fileName) {
xmlSubstitutionUtility.substituteAppSettingsVariables(folderPath, isFolderBasedDeployment, fileName);
});
}
console.log(tl.loc('XMLvariablesubstitutionappliedsuccessfully'));
}
if(variableSubstitutionFileFormat === "json") {
// For Json variable substitution if no target files are specified file files matching **\*.json
if(!targetFiles || targetFiles.length == 0) {
targetFiles = ["**/*.json"];
}
jsonSubstitutionUtility.jsonVariableSubstitution(folderPath, targetFiles, true);
console.log(tl.loc('JSONvariablesubstitutionappliedsuccessfully'));
}
}
开发者ID:Microsoft,项目名称:vsts-tasks,代码行数:58,代码来源:fileTransformationsUtility.ts
示例3: Error
export async function fileTransformations(isFolderBasedDeployment: boolean, JSONFiles: any, xmlTransformation: boolean, xmlVariableSubstitution: boolean, webDeployPkg: string) {
var tempPackagePath;
var folderPath = utility.generateTemporaryFolderOrZipPath(tl.getVariable('System.DefaultWorkingDirectory'), true);
if(isFolderBasedDeployment) {
tl.cp(path.join(webDeployPkg, '/*'), folderPath, '-rf', false);
}
else {
await zipUtility.unzip(webDeployPkg, folderPath);
}
if(xmlTransformation) {
var environmentName = tl.getVariable('Release.EnvironmentName');
if(tl.osType().match(/^Win/)) {
var transformConfigs = ["Release.config"];
if(environmentName) {
transformConfigs.push(environmentName + ".config");
}
xdtTransformationUtility.basicXdtTransformation(folderPath, transformConfigs);
console.log(tl.loc("XDTTransformationsappliedsuccessfully"));
}
else {
throw new Error(tl.loc("CannotPerformXdtTransformationOnNonWindowsPlatform"));
}
}
if(xmlVariableSubstitution) {
await xmlSubstitutionUtility.substituteAppSettingsVariables(folderPath);
console.log(tl.loc('XMLvariablesubstitutionappliedsuccessfully'));
}
if(JSONFiles.length != 0) {
jsonSubstitutionUtility.jsonVariableSubstitution(folderPath, JSONFiles);
console.log(tl.loc('JSONvariablesubstitutionappliedsuccessfully'));
}
if(isFolderBasedDeployment) {
tempPackagePath = folderPath;
webDeployPkg = folderPath;
}
else {
var tempWebPackageZip = utility.generateTemporaryFolderOrZipPath(tl.getVariable('System.DefaultWorkingDirectory'), false);
webDeployPkg = await zipUtility.archiveFolder(folderPath, "", tempWebPackageZip);
tempPackagePath = webDeployPkg;
tl.rmRF(folderPath, true);
}
return {
"webDeployPkg": webDeployPkg,
"tempPackagePath": tempPackagePath
};
}
开发者ID:ReneSchumacher,项目名称:VSTS-Tasks,代码行数:53,代码来源:fileTransformationsUtility.ts
示例4: xmlVarSub
async function xmlVarSub() {
var tags = ["applicationSettings", "appSettings", "connectionStrings", "configSections"];
var configFiles = [path.join(__dirname, 'L1XmlVarSub/Web_test.config'), path.join(__dirname, 'L1XmlVarSub/Web_test.Debug.config')];
var variableMap = {
'conntype' : 'new_connType',
'connectionString' : 'database_connection_string',
'webpages:Version' : '1.1.7.3',
'rmtype' : 'newRM@type',
'xdt:Transform' : 'DelAttributes',
'xdt:Locator' : 'Match(tag)'
}
for(var configFile of configFiles) {
await xmlSubstitutionUtility.substituteXmlVariables(configFile, tags, variableMap);
}
}
开发者ID:ReneSchumacher,项目名称:VSTS-Tasks,代码行数:16,代码来源:L1XmlVarSub.ts
示例5: xmlVarSub
async function xmlVarSub() {
var tags = ["applicationSettings", "appSettings", "connectionStrings", "configSections"];
var configFiles = [path.join(__dirname, 'L1XmlVarSub/Web_test.config'), path.join(__dirname, 'L1XmlVarSub/Web_test.Debug.config')];
var variableMap = {
'conntype' : 'new_connType',
"MyDB": "TestDB",
'webpages:Version' : '1.1.7.3',
'xdt:Transform' : 'DelAttributes',
'xdt:Locator' : 'Match(tag)',
'DefaultConnection': "Url=https://primary;Database=db1;ApiKey=11111111-1111-1111-1111-111111111111;Failover = {Url:'https://secondary', ApiKey:'11111111-1111-1111-1111-111111111111'}",
'OtherDefaultConnection': 'connectionStringValue2',
'ParameterConnection': 'New_Connection_String From xml var subs',
'connectionString': 'replaced_value'
}
var parameterFilePath = path.join(__dirname, 'L1XmlVarSub/parameters_test.xml');
for(var configFile of configFiles) {
await xmlSubstitutionUtility.substituteXmlVariables(configFile, tags, variableMap, parameterFilePath);
}
}
开发者ID:DarqueWarrior,项目名称:vsts-tasks,代码行数:20,代码来源:L1XmlVarSub.ts
示例6: fileTransformations
export function fileTransformations(isFolderBasedDeployment: boolean, JSONFiles: any, xmlTransformation: boolean, xmlVariableSubstitution: boolean, folderPath: string, isMSBuildPackage: boolean) {
if(xmlTransformation) {
if(isMSBuildPackage) {
var debugMode = tl.getVariable('system.debug');
if(debugMode && debugMode.toLowerCase() == 'true') {
tl.warning(tl.loc('AutoParameterizationMessage'));
}
else {
console.log(tl.loc('AutoParameterizationMessage'));
}
}
var environmentName = tl.getVariable('Release.EnvironmentName');
if(tl.osType().match(/^Win/)) {
var transformConfigs = ["Release.config"];
if(environmentName && environmentName.toLowerCase() != 'release') {
transformConfigs.push(environmentName + ".config");
}
var isTransformationApplied: boolean = xdtTransformationUtility.basicXdtTransformation(folderPath, transformConfigs);
if(isTransformationApplied)
{
console.log(tl.loc("XDTTransformationsappliedsuccessfully"));
}
}
else {
throw new Error(tl.loc("CannotPerformXdtTransformationOnNonWindowsPlatform"));
}
}
if(xmlVariableSubstitution) {
xmlSubstitutionUtility.substituteAppSettingsVariables(folderPath, isFolderBasedDeployment);
console.log(tl.loc('XMLvariablesubstitutionappliedsuccessfully'));
}
if(JSONFiles.length != 0) {
jsonSubstitutionUtility.jsonVariableSubstitution(folderPath, JSONFiles);
console.log(tl.loc('JSONvariablesubstitutionappliedsuccessfully'));
}
}
开发者ID:Microsoft,项目名称:vsts-tasks,代码行数:41,代码来源:fileTransformationsUtility.ts
示例7:
targetFiles.forEach(function(fileName) {
xmlSubstitutionUtility.substituteAppSettingsVariables(folderPath, isFolderBasedDeployment, fileName);
});
开发者ID:Microsoft,项目名称:vsts-tasks,代码行数:3,代码来源:fileTransformationsUtility.ts
注:本文中的webdeployment-common/xmlvariablesubstitutionutility.js.default类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论