launchSettings.json 781 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:44381",
  8. //"sslPort": 0
  9. "sslPort": 44300
  10. }
  11. },
  12. "profiles": {
  13. "IIS Express": {
  14. "commandName": "IISExpress",
  15. "launchBrowser": true,
  16. "launchUrl": "swagger",
  17. "environmentVariables": {
  18. "ASPNETCORE_ENVIRONMENT": "Development"
  19. }
  20. },
  21. "LAPS_PDFANALYSIS_Service": {
  22. "commandName": "Project",
  23. "launchBrowser": true,
  24. "launchUrl": "swagger",
  25. "environmentVariables": {
  26. "ASPNETCORE_ENVIRONMENT": "Development"
  27. },
  28. "applicationUrl": "http://localhost:44381"
  29. }
  30. }
  31. }