launchSettings.json 777 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iisExpress": {
  6. "applicationUrl": "http://127.0.0.1:5002",
  7. "sslPort": 0
  8. }
  9. },
  10. "$schema": "http://json.schemastore.org/launchsettings.json",
  11. "profiles": {
  12. "IIS Express": {
  13. "commandName": "IISExpress",
  14. "launchBrowser": true,
  15. "launchUrl": "_doc",
  16. "environmentVariables": {
  17. "ASPNETCORE_ENVIRONMENT": "Development"
  18. }
  19. },
  20. "QM.AuthServer": {
  21. "commandName": "Project",
  22. "launchBrowser": true,
  23. "launchUrl": "_doc",
  24. "environmentVariables": {
  25. "ASPNETCORE_ENVIRONMENT": "Development"
  26. },
  27. "dotnetRunMessages": "true",
  28. "applicationUrl": "http://127.0.0.1:5002"
  29. }
  30. }
  31. }