足力健后端,使用.netcore版本,合并1个项目使用

launchSettings.json 867B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": true,
  4. "anonymousAuthentication": true,
  5. "iis": {
  6. "applicationUrl": "http://localhost/TVShoppingCallCenter_ZLJ",
  7. "sslPort": 0
  8. },
  9. "iisExpress": {
  10. "applicationUrl": "http://localhost:58162",
  11. "sslPort": 0
  12. }
  13. },
  14. "$schema": "http://json.schemastore.org/launchsettings.json",
  15. "profiles": {
  16. "IIS Express": {
  17. "commandName": "IISExpress",
  18. "launchBrowser": true,
  19. "launchUrl": "api/info",
  20. "environmentVariables": {
  21. "ASPNETCORE_ENVIRONMENT": "Development"
  22. }
  23. },
  24. "TVShoppingCallCenter_ZLJ": {
  25. "commandName": "Project",
  26. "launchBrowser": true,
  27. "launchUrl": "api/info",
  28. "environmentVariables": {
  29. "ASPNETCORE_ENVIRONMENT": "Development"
  30. },
  31. "applicationUrl": "https://localhost:5001"
  32. }
  33. }
  34. }