From 24a0eb0fb791795fd20fbb7baeb1687419adc434 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 30 Oct 2017 18:00:26 -0500 Subject: [PATCH] more Razor sample cleanup --- src/FilterLists.Web/Properties/launchSettings.json | 12 ++++++++++++ src/FilterLists.Web/appsettings.Development.json | 10 ---------- 2 files changed, 12 insertions(+), 10 deletions(-) create mode 100644 src/FilterLists.Web/Properties/launchSettings.json delete mode 100644 src/FilterLists.Web/appsettings.Development.json diff --git a/src/FilterLists.Web/Properties/launchSettings.json b/src/FilterLists.Web/Properties/launchSettings.json new file mode 100644 index 000000000..9fdfd2ccf --- /dev/null +++ b/src/FilterLists.Web/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "FilterLists.Web": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "http://localhost:64895/" + } + } +} \ No newline at end of file diff --git a/src/FilterLists.Web/appsettings.Development.json b/src/FilterLists.Web/appsettings.Development.json deleted file mode 100644 index fa8ce71a9..000000000 --- a/src/FilterLists.Web/appsettings.Development.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Logging": { - "IncludeScopes": false, - "LogLevel": { - "Default": "Debug", - "System": "Information", - "Microsoft": "Information" - } - } -}