launchSettings.json 653 B

12345678910111213141516171819202122232425262728
  1. {
  2. "profiles": {
  3. "Auth": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development"
  8. },
  9. "dotnetRunMessages": true,
  10. "applicationUrl": "https://localhost:40100;"
  11. },
  12. "IIS Express": {
  13. "commandName": "IISExpress",
  14. "launchBrowser": true,
  15. "environmentVariables": {
  16. "ASPNETCORE_ENVIRONMENT": "Development"
  17. }
  18. }
  19. },
  20. "iisSettings": {
  21. "windowsAuthentication": false,
  22. "anonymousAuthentication": true,
  23. "iisExpress": {
  24. "applicationUrl": "http://localhost:57444",
  25. "sslPort": 44332
  26. }
  27. }
  28. }