launchSettings.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "profiles": {
  3. "API.Development": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "launchUrl": "swagger",
  7. "environmentVariables": {
  8. "ASPNETCORE_ENVIRONMENT": "Development",
  9. "DOTNET_ENVIRONMENT": "Development"
  10. },
  11. "dotnetRunMessages": true,
  12. "applicationUrl": "https://localhost:7088;http://localhost:5088"
  13. },
  14. "API.Production": {
  15. "commandName": "Project",
  16. "launchBrowser": true,
  17. "launchUrl": "swagger",
  18. "environmentVariables": {
  19. "ASPNETCORE_ENVIRONMENT": "Production",
  20. "DOTNET_ENVIRONMENT": "Production"
  21. },
  22. "applicationUrl": "https://localhost:7088;http://localhost:5088"
  23. },
  24. "WSL": {
  25. "commandName": "WSL2",
  26. "launchBrowser": true,
  27. "launchUrl": "https://localhost:7088/swagger",
  28. "environmentVariables": {
  29. "ASPNETCORE_ENVIRONMENT": "Development",
  30. "ASPNETCORE_URLS": "https://localhost:7088;http://localhost:5088",
  31. "DOTNET_ENVIRONMENT": "Development"
  32. },
  33. "distributionName": ""
  34. }
  35. },
  36. "$schema": "https://json.schemastore.org/launchsettings.json",
  37. "iisSettings": {
  38. "windowsAuthentication": false,
  39. "anonymousAuthentication": true,
  40. "iisExpress": {
  41. "applicationUrl": "http://localhost:57212",
  42. "sslPort": 44386
  43. }
  44. }
  45. }