launchSettings.json 807 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iis": {
  6. "applicationUrl": "http://localhost/WebMainFrameForEap",
  7. "sslPort": 0
  8. },
  9. "iisExpress": {
  10. "applicationUrl": "http://localhost:18531",
  11. "sslPort": 0
  12. }
  13. },
  14. "profiles": {
  15. "IIS Express": {
  16. "commandName": "IISExpress",
  17. "launchBrowser": true,
  18. "environmentVariables": {
  19. "ASPNETCORE_ENVIRONMENT": "Development"
  20. },
  21. "nativeDebugging": true
  22. },
  23. "WebMainFrame": {
  24. "commandName": "Project",
  25. "launchBrowser": true,
  26. "launchUrl": "swagger",
  27. "environmentVariables": {
  28. "ASPNETCORE_ENVIRONMENT": "Development"
  29. },
  30. "applicationUrl": "https://localhost:5001;http://localhost:5000"
  31. }
  32. }
  33. }