Merge pull request #285 from aspnet/release/2.1
Adding host configurations for F# templates (#281)
This commit is contained in:
commit
66750bb20a
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"$schema": "http://json.schemastore.org/vs-2017.3.host",
|
||||
"name": {
|
||||
"text": "Empty",
|
||||
"package": "{0CD94836-1526-4E85-87D3-FB5274C5AFC9}",
|
||||
"id": "1011"
|
||||
},
|
||||
"description": {
|
||||
"text": "An empty project template for creating an ASP.NET Core application. This template does not have any content in it.",
|
||||
"package": "{0CD94836-1526-4E85-87D3-FB5274C5AFC9}",
|
||||
"id": "1012"
|
||||
},
|
||||
"order": 100,
|
||||
"icon": "vs-2017.3/Empty.png",
|
||||
"learnMoreLink": "https://go.microsoft.com/fwlink/?LinkID=784883",
|
||||
"uiFilters": [ "oneaspnet" ],
|
||||
"supportsDocker": true,
|
||||
"ports": [
|
||||
{
|
||||
"name": "HttpPort",
|
||||
"useHttps": false
|
||||
},
|
||||
{
|
||||
"name": "HttpsPort",
|
||||
"useHttps": true
|
||||
}
|
||||
],
|
||||
"minFullFrameworkVersion": "4.6.1"
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 303 B |
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"$schema": "http://json.schemastore.org/vs-2017.3.host",
|
||||
"name": {
|
||||
"text": "Web Application (Model-View-Controller)",
|
||||
"package": "{0CD94836-1526-4E85-87D3-FB5274C5AFC9}",
|
||||
"id": "1015"
|
||||
},
|
||||
"description": {
|
||||
"text": "A project template for creating an ASP.NET Core application with example ASP.NET Core MVC Views and Controllers. This template can also be used for RESTful HTTP services.",
|
||||
"package": "{0CD94836-1526-4E85-87D3-FB5274C5AFC9}",
|
||||
"id": "1016"
|
||||
},
|
||||
"order": 300,
|
||||
"icon": "vs-2017.3/WebApplication.png",
|
||||
"learnMoreLink": "https://go.microsoft.com/fwlink/?LinkID=784881",
|
||||
"uiFilters": [ "oneaspnet" ],
|
||||
"supportsDocker": true,
|
||||
"isApi": false,
|
||||
"useBrowserLink": true,
|
||||
"ports": [
|
||||
{
|
||||
"name": "HttpPort",
|
||||
"useHttps": false
|
||||
},
|
||||
{
|
||||
"name": "HttpsPort",
|
||||
"useHttps": true
|
||||
}
|
||||
],
|
||||
"azureReplyUrlPortName": "HttpsPort",
|
||||
"minFullFrameworkVersion": "4.6.1"
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"$schema": "http://json.schemastore.org/vs-2017.3.host",
|
||||
"name": {
|
||||
"text": "API",
|
||||
"package": "{0CD94836-1526-4E85-87D3-FB5274C5AFC9}",
|
||||
"id": "1013"
|
||||
},
|
||||
"description": {
|
||||
"text": "A project template for creating an ASP.NET Core application with an example Controller for a RESTful HTTP service. This template can also be used for ASP.NET Core MVC Views and Controllers.",
|
||||
"package": "{0CD94836-1526-4E85-87D3-FB5274C5AFC9}",
|
||||
"id": "1014"
|
||||
},
|
||||
"order": 200,
|
||||
"icon": "vs-2017.3/WebAPI.png",
|
||||
"learnMoreLink": "https://go.microsoft.com/fwlink/?LinkID=784882",
|
||||
"uiFilters": [ "oneaspnet" ],
|
||||
"supportsDocker": true,
|
||||
"isApi": true,
|
||||
"ports": [
|
||||
{
|
||||
"name": "HttpPort",
|
||||
"useHttps": false
|
||||
},
|
||||
{
|
||||
"name": "HttpsPort",
|
||||
"useHttps": true
|
||||
}
|
||||
],
|
||||
"azureReplyUrlPortName": "HttpsPort",
|
||||
"minFullFrameworkVersion": "4.6.1"
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 523 B |
Loading…
Reference in New Issue