You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ServiceManagement/Services/Commands/Websites/PublishAzureWebsiteProject.cs
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ public class PublishAzureWebsiteProject : WebsiteContextBaseCmdlet, IDynamicPara
30
30
31
31
[Parameter(ParameterSetName="Package",Position=3,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The configuration tokens to use for the deployment.")]
32
32
[ValidateNotNullOrEmpty]
33
-
publicHashtableTokens{get;set;}
33
+
publicstringTokens{get;set;}
34
34
35
35
[Parameter(Mandatory=false,ParameterSetName="Package",HelpMessage="The WebDeploy SetParameters.xml file to transform configuration within the package.")]
36
36
publicstringSetParametersFile{get;set;}
@@ -97,14 +97,18 @@ public override void ExecuteCmdlet()
97
97
}
98
98
99
99
// If tokens are passed in, update the parameters file if there is one
0 commit comments