Skip to content

Commit

Permalink
Azure App Service Deploy must support setting Runtime Stack to .NET C…
Browse files Browse the repository at this point in the history
…ore 2.0 (#6435)

* Azure App Service Deploy must support setting Runtime Stack to .NET Core 2.0

Azure App Service supports .Net Core 2.0 as Runtime Stack. The task
Azure App Service Deploy must support setting Runtime Stack to .NET Core
2.0

* Use spaces instead of tab to ensure consistent alignment
  • Loading branch information
rudibech authored and vincent1173 committed Feb 14, 2018
1 parent 5c6dcd3 commit 02c5557
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions Tasks/AzureRmWebAppDeployment/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"version": {
"Major": 3,
"Minor": 3,
"Patch": 41
"Patch": 42
},
"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 Expand Up @@ -310,8 +310,9 @@
"node|8.1": "Node.js 8.1",
"php|5.6": "PHP 5.6",
"php|7.0": "PHP 7.0",
"dotnetcore|1.0": ".Net Core 1.0",
"dotnetcore|1.1": ".Net Core 1.1",
"dotnetcore|1.0": ".NET Core 1.0",
"dotnetcore|1.1": ".NET Core 1.1",
"dotnetcore|2.0": ".NET Core 2.0",
"ruby|2.3": "Ruby 2.3"
},
"helpMarkDown": "Select the framework and version.",
Expand Down
7 changes: 4 additions & 3 deletions Tasks/AzureRmWebAppDeployment/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"version": {
"Major": 3,
"Minor": 3,
"Patch": 41
"Patch": 42
},
"releaseNotes": "ms-resource:loc.releaseNotes",
"minimumAgentVersion": "2.104.1",
Expand Down Expand Up @@ -318,8 +318,9 @@
"node|8.1": "Node.js 8.1",
"php|5.6": "PHP 5.6",
"php|7.0": "PHP 7.0",
"dotnetcore|1.0": ".Net Core 1.0",
"dotnetcore|1.1": ".Net Core 1.1",
"dotnetcore|1.0": ".NET Core 1.0",
"dotnetcore|1.1": ".NET Core 1.1",
"dotnetcore|2.0": ".NET Core 2.0",
"ruby|2.3": "Ruby 2.3"
},
"helpMarkDown": "ms-resource:loc.input.help.RuntimeStack",
Expand Down

0 comments on commit 02c5557

Please sign in to comment.