Browse Source

Update the ASP.NET Core samples to use Kestrel as the default HTTP server

pull/2055/head
Kévin Chalet 2 years ago
parent
commit
6e836c4bb9
  1. 18
      sandbox/OpenIddict.Sandbox.AspNetCore.Client/Properties/launchSettings.json
  2. 18
      sandbox/OpenIddict.Sandbox.AspNetCore.Server/Properties/launchSettings.json

18
sandbox/OpenIddict.Sandbox.AspNetCore.Client/Properties/launchSettings.json

@ -3,25 +3,27 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:53507",
"applicationUrl": "https://localhost:44381/",
"sslPort": 44381
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"Kestrel": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "https://localhost:44381/",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"OpenIddict.Sandbox.AspNetCore.Client": {
"commandName": "Project",
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:44381/"
}
}
}
}
}

18
sandbox/OpenIddict.Sandbox.AspNetCore.Server/Properties/launchSettings.json

@ -3,25 +3,27 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:54540",
"applicationUrl": "https://localhost:44395/",
"sslPort": 44395
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"Kestrel": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "https://localhost:44395/",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"OpenIddict.Sandbox.AspNetCore.Server": {
"commandName": "Project",
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:44395/"
}
}
}
}
}

Loading…
Cancel
Save