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

ide.host.json « .template.config « ComponentsWebAssembly-CSharp « content « Web.ProjectTemplates « ProjectTemplates « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9005a4d171a3732fedadfc12b6fdb143b1030222 (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
{
  "$schema": "http://json.schemastore.org/vs-2017.3.host",
  "order": 610,
  "icon": "icon.png",
  "supportedAuthentications": [
    {
      "auth": "None",
      "authenticationType": "NoAuth",
      "allowUnsecured": true
    },
    {
      "auth": "Individual",
      "authenticationType": "IndividualAuth",
      "b2cAuthenticationOptions": "Local"
    },
    {
      "auth": "SingleOrg",
      "authenticationType": "OrgAuth",
      "orgAuthenticationOptions": "SSO",
      "provisionServerSymbol": "Hosted",
      "callbackPath": "/authentication/login-callback",
      "additionalReplyUriPorts": [ 5001 ]
    }
  ],
  "ports": [
    {
      "name": "HttpPort",
      "useHttps": false
    },
    {
      "name": "HttpsPort",
      "useHttps": true
    }
  ],
  "disableHttpsSymbol": "NoHttps",
  "symbolInfo": [
    {
      "id": "Hosted",
      "name": {
        "text": "ASP.NET Core _hosted"
      },
      "isVisible": "true"
    },
    {
      "id": "PWA",
      "name": {
        "text": "_Progressive Web Application"
      },
      "isVisible": "true"
    }
  ]
}