-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
add default params for MSDEPLOY #6527
Conversation
@@ -0,0 +1,112 @@ | |||
var msdeployUtility = require('webdeployment-common/msdeployutility.js'); | |||
/*getMSDeployCmdArgs(webAppPackage: string, webAppName: string, publishingProfile, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove commented code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
} | ||
|
||
additionalArguments = !!(additionalArguments) ? additionalArguments : ' '; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of all these, why can't we just add the default values in the task.json for "additionalArguments" input? The task code will handle them as just another additional arguments input. This will be transparent as user know the values with which msdeploy is being run. User has flexibility to update the default values if required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the value based on the discussion.
No description provided.