launchSettings.json 794 B

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