소스 검색

Run in development mode by default from Visual Studio

Mark Monteiro 5 년 전
부모
커밋
41de0bd245
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      Jellyfin.Server/Properties/launchSettings.json

+ 7 - 1
Jellyfin.Server/Properties/launchSettings.json

@@ -1,10 +1,16 @@
 {
   "profiles": {
     "Jellyfin.Server": {
-      "commandName": "Project"
+      "commandName": "Project",
+      "environmentVariables": {
+        "ASPNETCORE_ENVIRONMENT": "Development"
+      }
     },
     "Jellyfin.Server (nowebclient)": {
       "commandName": "Project",
+      "environmentVariables": {
+        "ASPNETCORE_ENVIRONMENT": "Development"
+      },
       "commandLineArgs": "--nowebclient"
     }
   }