颐和api

launchSettings.json 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "profiles": {
  3. "IIS Express": {
  4. "commandName": "IISExpress",
  5. "launchBrowser": true,
  6. "launchUrl": "api/info",
  7. "environmentVariables": {
  8. "ASPNETCORE_ENVIRONMENT": "Development_Test"
  9. }
  10. },
  11. "ConfigurationApi(Dev)": {
  12. "commandName": "Project",
  13. "launchBrowser": true,
  14. "launchUrl": "api/info",
  15. "environmentVariables": {
  16. "ASPNETCORE_ENVIRONMENT": "Development_Test"
  17. },
  18. "applicationUrl": "http://localhost:28240/"
  19. },
  20. "ConfigurationApi(DevBase)": {
  21. "commandName": "Project",
  22. "launchBrowser": true,
  23. "launchUrl": "api/info",
  24. "environmentVariables": {
  25. "ASPNETCORE_ENVIRONMENT": "Development_Base"
  26. },
  27. "applicationUrl": "http://localhost:28240/"
  28. },
  29. "ConfigurationApi(Prod)": {
  30. "commandName": "Project",
  31. "launchBrowser": true,
  32. "launchUrl": "api/info",
  33. "environmentVariables": {
  34. "ASPNETCORE_ENVIRONMENT": "Production"
  35. },
  36. "applicationUrl": "http://localhost:28240/"
  37. }
  38. },
  39. "iisSettings": {
  40. "windowsAuthentication": false,
  41. "anonymousAuthentication": true,
  42. "iisExpress": {
  43. "applicationUrl": "http://localhost:49928/",
  44. "sslPort": 0
  45. }
  46. }
  47. }