launchSettings.json 956 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iis": {
  6. "applicationUrl": "http://localhost/Web",
  7. "sslPort": 0
  8. },
  9. "iisExpress": {
  10. "applicationUrl": "http://localhost:5242",
  11. "sslPort": 44306
  12. }
  13. },
  14. "profiles": {
  15. "IIS Express": {
  16. "commandName": "IIS",
  17. "launchBrowser": true,
  18. "environmentVariables": {
  19. "ASPNETCORE_ENVIRONMENT": "Development",
  20. "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
  21. }
  22. },
  23. "AppServer": {
  24. "commandName": "Project",
  25. "launchBrowser": true,
  26. "environmentVariables": {
  27. "ASPNETCORE_ENVIRONMENT": "Development",
  28. "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
  29. },
  30. "applicationUrl": "https://localhost:5001;http://localhost:5000"
  31. }
  32. }
  33. }