Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ide.host.json « .template.config « WebApi-CSharp « content « Web.ProjectTemplates « ProjectTemplates « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 646a45a5ef52e207f338f943dd53e4e781e0baaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
  "$schema": "http://json.schemastore.org/vs-2017.3.host",
  "order": 200,
  "icon": "ide/WebAPI.png",
  "supportsDocker": true,
  "supportedAuthentications": [
    {
      "auth": "None",
      "authenticationType": "NoAuth",
      "allowUnsecured": true
    },
    {
      "auth": "Individual",
      "authenticationType": "IndividualAuth",
      "b2cAuthenticationOptions": "CloudExisting"
    },
    {
      "auth": "SingleOrg",
      "authenticationType": "OrgAuth",
      "orgAuthenticationOptions": "SSO"
    },
    {
      "auth": "Windows",
      "authenticationType": "WindowsAuth"
    }
  ],
  "ports": [
    {
      "name": "HttpPort",
      "useHttps": false
    },
    {
      "name": "HttpsPort",
      "useHttps": true
    }
  ],
  "symbolInfo": [
    {
      "id": "DisableOpenAPI",
      "name": {
        "text": "Enable _OpenAPI support",
        "overrideDefaultText": true
      },
      "description": {
        "text": "Enables OpenAPI (Swagger) support"
      },
      "invertBoolean": true,
      "isVisible": true,
      "defaultValue": true
    },
    {
      "id": "UseMinimalAPIs",
      "name": {
        "text": "Use controllers (uncheck to use minimal APIs)",
        "overrideDefaultText": true
      },
      "invertBoolean": true,
      "isVisible": true,
      "defaultValue": true
    }
  ],
  "disableHttpsSymbol": "NoHttps"
}