Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing azurermwebappdeplymentv3 by correcting folder path #13560

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Tasks/AzureRmWebAppDeploymentV3/azurermwebappdeployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ import { Kudu } from 'azure-pipelines-tasks-azure-arm-rest/azure-arm-app-service
import { KuduServiceUtility } from './operations/KuduServiceUtility';
import { addReleaseAnnotation } from './operations/ReleaseAnnotationUtility';

var packageUtility = require('webdeployment-common/packageUtility.js');
var packageUtility = require('./webdeployment-common/packageUtility.js');

var zipUtility = require('webdeployment-common/ziputility.js');
var deployUtility = require('webdeployment-common/utility.js');
var msDeploy = require('webdeployment-common/deployusingmsdeploy.js');
var zipUtility = require('./webdeployment-common/ziputility.js');
var deployUtility = require('./webdeployment-common/utility.js');
var msDeploy = require('./webdeployment-common/deployusingmsdeploy.js');

async function main() {
let zipDeploymentID: string;
Expand Down
4 changes: 2 additions & 2 deletions Tasks/AzureRmWebAppDeploymentV3/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"author": "Microsoft Corporation",
"version": {
"Major": 3,
"Minor": 175,
"Patch": 1
"Minor": 176,
"Patch": 0
},
"releaseNotes": "What's new in Version 3.0: <br/>&nbsp;&nbsp;Supports File Transformations (XDT) <br/>&nbsp;&nbsp;Supports Variable Substitutions(XML, JSON) <br/>Click [here](https://aka.ms/azurermwebdeployreadme) for more information.",
"minimumAgentVersion": "2.104.1",
Expand Down
4 changes: 2 additions & 2 deletions Tasks/AzureRmWebAppDeploymentV3/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"author": "Microsoft Corporation",
"version": {
"Major": 3,
"Minor": 175,
"Patch": 1
"Minor": 176,
"Patch": 0
},
"releaseNotes": "ms-resource:loc.releaseNotes",
"minimumAgentVersion": "2.104.1",
Expand Down