diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-21 21:28:34 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-21 21:28:34 +0100 |
| commit | edc974e4c01649ab6e0286f617c6b371a8735391 (patch) | |
| tree | 69eb7c941462c699f427977b5665ef7fa3deb540 | |
| parent | 2184553d1583c1346bd4757bfee0c510639281c4 (diff) | |
Set 'ASPNETCORE_ENVIRONMENT=Development' when running from visual studio
| -rw-r--r-- | Jellyfin.Server/Properties/launchSettings.json | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Jellyfin.Server/Properties/launchSettings.json b/Jellyfin.Server/Properties/launchSettings.json new file mode 100644 index 000000000..9140f552b --- /dev/null +++ b/Jellyfin.Server/Properties/launchSettings.json @@ -0,0 +1,10 @@ +{ + "profiles": { + "Jellyfin.Server": { + "commandName": "Project", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} |
