diff --git a/.gitignore b/.gitignore
index e17f6427f..6174512bf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,7 @@
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
+*.rsuser
*.suo
*.user
*.userosscache
@@ -19,6 +20,8 @@
[Rr]eleases/
x64/
x86/
+[Aa][Rr][Mm]/
+[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
@@ -76,6 +79,7 @@ StyleCopReport.xml
*.tlh
*.tmp
*.tmp_proj
+*_wpftmp.csproj
*.log
*.vspscc
*.vssscc
@@ -207,7 +211,7 @@ _pkginfo.txt
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
-!*.[Cc]ache/
+!?*.[Cc]ache/
# Others
ClientBin/
@@ -227,6 +231,8 @@ orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
+# ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true
+**/wwwroot/lib/
# RIA/Silverlight projects
Generated_Code/
@@ -290,8 +296,8 @@ paket-files/
.idea/
*.sln.iml
-# CodeRush
-.cr/
+# CodeRush personal settings
+.cr/personal
# Python Tools for Visual Studio (PTVS)
__pycache__/
@@ -331,7 +337,9 @@ ASALocalRun/
# Local History for Visual Studio
.localhistory/
+# BeatPulse healthcheck temp database
+healthchecksdb
+
# FilterLists Custom Ignores
-appsettings.development.json
-appsettings.production.json
+appsettings*.json
src/FilterLists.Web/wwwroot/dist
\ No newline at end of file
diff --git a/FilterLists.sln.DotSettings b/FilterLists.sln.DotSettings
index a6cf3a100..7309602f7 100644
--- a/FilterLists.sln.DotSettings
+++ b/FilterLists.sln.DotSettings
@@ -194,6 +194,7 @@
<Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" />
True
True
+ True
True
True
True
diff --git a/src/FilterLists.Api/Properties/launchSettings.json b/src/FilterLists.Api/Properties/launchSettings.json
deleted file mode 100644
index dcce7aa59..000000000
--- a/src/FilterLists.Api/Properties/launchSettings.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "profiles": {
- "FilterLists.Api": {
- "commandName": "Project",
- "launchBrowser": true,
- "launchUrl": "http://localhost:5000/docs/index.html",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- },
- "applicationUrl": "http://localhost:5000/docs/index.html"
- },
- "Docker": {
- "commandName": "Docker",
- "launchBrowser": true,
- "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/docs/index.html"
- }
- }
-}
\ No newline at end of file
diff --git a/src/FilterLists.Web/Properties/launchSettings.json b/src/FilterLists.Web/Properties/launchSettings.json
deleted file mode 100644
index 8a3cc92da..000000000
--- a/src/FilterLists.Web/Properties/launchSettings.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "FilterLists.Web": {
- "commandName": "Project",
- "launchBrowser": true,
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- },
- "applicationUrl": "http://localhost:5001/"
- },
- "profiles": {
- "FilterLists.Web": {
- "commandName": "Project",
- "launchBrowser": true,
- "launchUrl": "http://localhost:5001/",
- "applicationUrl": "http://localhost:5001/"
- },
- "Docker": {
- "commandName": "Docker",
- "launchBrowser": true,
- "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/"
- }
- }
-}
\ No newline at end of file