launchSettings.json 718 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iis": {
  6. "applicationUrl": "http://localhost/SupplierWeb",
  7. "sslPort": 0
  8. },
  9. "iisExpress": {
  10. "applicationUrl": "http://localhost:57251/",
  11. "sslPort": 0
  12. }
  13. },
  14. "profiles": {
  15. "IIS Express": {
  16. "commandName": "IISExpress",
  17. "launchBrowser": true,
  18. "environmentVariables": {
  19. "ASPNETCORE_ENVIRONMENT": "Development"
  20. }
  21. },
  22. "SupplierWeb": {
  23. "commandName": "Project",
  24. "launchBrowser": true,
  25. "environmentVariables": {
  26. "ASPNETCORE_ENVIRONMENT": "Development"
  27. },
  28. "applicationUrl": "http://localhost:57252/"
  29. }
  30. }
  31. }