launchSettings.json 930 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iisExpress": {
  6. "applicationUrl": "http://localhost:41443",
  7. "sslPort": 44345
  8. }
  9. },
  10. "profiles": {
  11. "http": {
  12. "commandName": "Project",
  13. "dotnetRunMessages": true,
  14. "launchBrowser": true,
  15. "applicationUrl": "http://localhost:5184",
  16. "environmentVariables": {
  17. "ASPNETCORE_ENVIRONMENT": "Development"
  18. }
  19. },
  20. "https": {
  21. "commandName": "Project",
  22. "dotnetRunMessages": true,
  23. "launchBrowser": true,
  24. "applicationUrl": "https://localhost:7114;http://localhost:5184",
  25. "environmentVariables": {
  26. "ASPNETCORE_ENVIRONMENT": "Development"
  27. }
  28. },
  29. "IIS Express": {
  30. "commandName": "IISExpress",
  31. "launchBrowser": true,
  32. "environmentVariables": {
  33. "ASPNETCORE_ENVIRONMENT": "Development"
  34. }
  35. }
  36. }
  37. }