Skip to content

Commit

Permalink
msdeploy.exe.config file added to msdeploy package (#6811)
Browse files Browse the repository at this point in the history
  • Loading branch information
SumiranAgg authored Mar 28, 2018
1 parent 72f093a commit cda1de3
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 16 deletions.
5 changes: 0 additions & 5 deletions Tasks/AzureRmWebAppDeployment/make.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@
],
"externals": {
"archivePackages": [
{
"archiveName": "MSDeploy.zip",
"url": "https://vstsagenttools.blob.core.windows.net/tools/MSDeploy/3.6/MSDeploy.zip",
"dest": "./"
},
{
"archiveName": "ctt.zip",
"url": "https://vstsagenttools.blob.core.windows.net/tools/ctt/1.6/ctt.zip",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AzureRmWebAppDeployment/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 4,
"Minor": 0,
"Patch": 4
"Patch": 5
},
"releaseNotes": "What's new in version 4.* (preview)<br />Supports Kudu Zip Deploy<br />Supports App Service Environments<br />Improved UI for discovering different App service types supported by the task<br/>Click [here](https://aka.ms/azurermwebdeployreadme) for more Information.",
"minimumAgentVersion": "2.104.1",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AzureRmWebAppDeployment/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 4,
"Minor": 0,
"Patch": 4
"Patch": 5
},
"releaseNotes": "ms-resource:loc.releaseNotes",
"minimumAgentVersion": "2.104.1",
Expand Down
11 changes: 10 additions & 1 deletion Tasks/Common/webdeployment-common/make.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,14 @@
"source": "WebConfigTemplates",
"options": "-R"
}
]
],
"externals": {
"archivePackages": [
{
"archiveName": "MSDeploy.zip",
"url": "https://vstsagenttools.blob.core.windows.net/tools/MSDeploy/3.6/M133/MSDeploy.zip",
"dest": "./"
}
]
}
}
2 changes: 1 addition & 1 deletion Tasks/Common/webdeployment-common/msdeployutility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export async function getMSDeployFullPath() {
}
catch(error) {
tl.debug(error);
return path.join(__dirname, "..", "..", "MSDeploy3.6", "msdeploy.exe");
return path.join(__dirname, "MSDeploy3.6", "msdeploy.exe");
}
}

Expand Down
5 changes: 0 additions & 5 deletions Tasks/IISWebAppDeploymentOnMachineGroup/make.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@
],
"externals": {
"archivePackages": [
{
"archiveName": "MSDeploy.zip",
"url": "https://vstsagenttools.blob.core.windows.net/tools/MSDeploy/3.6/MSDeploy.zip",
"dest": "./"
},
{
"archiveName": "ctt.zip",
"url": "https://vstsagenttools.blob.core.windows.net/tools/ctt/1.6/ctt.zip",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/IISWebAppDeploymentOnMachineGroup/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"version": {
"Major": 0,
"Minor": 0,
"Patch": 36
"Patch": 37
},
"demands": [],
"minimumAgentVersion": "2.104.1",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/IISWebAppDeploymentOnMachineGroup/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"version": {
"Major": 0,
"Minor": 0,
"Patch": 36
"Patch": 37
},
"demands": [],
"minimumAgentVersion": "2.104.1",
Expand Down

0 comments on commit cda1de3

Please sign in to comment.