diff --git a/MP-STATS/Pages/Scarti.razor b/MP.Stats/Pages/Scarti.razor
similarity index 97%
rename from MP-STATS/Pages/Scarti.razor
rename to MP.Stats/Pages/Scarti.razor
index 8ce0c777..e5b7ed07 100644
--- a/MP-STATS/Pages/Scarti.razor
+++ b/MP.Stats/Pages/Scarti.razor
@@ -1,7 +1,7 @@
@page "/scarti"
-@using MP_STATS.Components
-@using MP_STATS.Data
+@using MP.Stats.Components
+@using MP.Stats.Data
diff --git a/MP-STATS/Pages/Scarti.razor.cs b/MP.Stats/Pages/Scarti.razor.cs
similarity index 95%
rename from MP-STATS/Pages/Scarti.razor.cs
rename to MP.Stats/Pages/Scarti.razor.cs
index 8a10dc37..75b83121 100644
--- a/MP-STATS/Pages/Scarti.razor.cs
+++ b/MP.Stats/Pages/Scarti.razor.cs
@@ -1,18 +1,18 @@
using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
-using MP_STATS.Data;
+using MP.Stats.Data;
using System;
using System.Threading.Tasks;
-namespace MP_STATS.Pages
+namespace MP.Stats.Pages
{
public partial class Scarti : ComponentBase, IDisposable
{
#region Private Fields
- private MpDataLayer.DatabaseModels.ResScarti currRecord = null;
+ private MP.Data.DatabaseModels.ResScarti currRecord = null;
- private MpDataLayer.DatabaseModels.ResScarti[] ListRecords;
+ private MP.Data.DatabaseModels.ResScarti[] ListRecords;
#endregion Private Fields
diff --git a/MP-STATS/Pages/_Host.cshtml b/MP.Stats/Pages/_Host.cshtml
similarity index 97%
rename from MP-STATS/Pages/_Host.cshtml
rename to MP.Stats/Pages/_Host.cshtml
index 499c43d3..9d3af208 100644
--- a/MP-STATS/Pages/_Host.cshtml
+++ b/MP.Stats/Pages/_Host.cshtml
@@ -1,7 +1,7 @@
@page "/"
@using System.Globalization
@using Microsoft.AspNetCore.Localization
-@namespace MP_STATS.Pages
+@namespace MP.Stats.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
Layout = null;
diff --git a/MP-STATS/Pages/_Host.cshtml.bak b/MP.Stats/Pages/_Host.cshtml.bak
similarity index 97%
rename from MP-STATS/Pages/_Host.cshtml.bak
rename to MP.Stats/Pages/_Host.cshtml.bak
index 0b5cdcf0..8c6accba 100644
--- a/MP-STATS/Pages/_Host.cshtml.bak
+++ b/MP.Stats/Pages/_Host.cshtml.bak
@@ -1,5 +1,5 @@
@page "/"
-@namespace MP_STATS.Pages
+@namespace MP.Stats.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
Layout = null;
diff --git a/MP-STATS/Program.cs b/MP.Stats/Program.cs
similarity index 97%
rename from MP-STATS/Program.cs
rename to MP.Stats/Program.cs
index 72c1800a..f159f7fc 100644
--- a/MP-STATS/Program.cs
+++ b/MP.Stats/Program.cs
@@ -7,7 +7,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
-namespace MP_STATS
+namespace MP.Stats
{
public class Program
{
diff --git a/MP-STATS/Properties/launchSettings.json b/MP.Stats/Properties/launchSettings.json
similarity index 100%
rename from MP-STATS/Properties/launchSettings.json
rename to MP.Stats/Properties/launchSettings.json
diff --git a/MP-STATS/Shared/MainLayout.razor b/MP.Stats/Shared/MainLayout.razor
similarity index 96%
rename from MP-STATS/Shared/MainLayout.razor
rename to MP.Stats/Shared/MainLayout.razor
index 0604e969..96964e0e 100644
--- a/MP-STATS/Shared/MainLayout.razor
+++ b/MP.Stats/Shared/MainLayout.razor
@@ -1,7 +1,7 @@
@inherits LayoutComponentBase
-@using MP_STATS.Data
-@using MP_STATS.Components
+@using MP.Stats.Data
+@using MP.Stats.Components
@inject MessageService MessageService
@implements IDisposable
diff --git a/MP-STATS/Shared/MainLayout.razor.css b/MP.Stats/Shared/MainLayout.razor.css
similarity index 100%
rename from MP-STATS/Shared/MainLayout.razor.css
rename to MP.Stats/Shared/MainLayout.razor.css
diff --git a/MP-STATS/Shared/NavMenu.razor b/MP.Stats/Shared/NavMenu.razor
similarity index 100%
rename from MP-STATS/Shared/NavMenu.razor
rename to MP.Stats/Shared/NavMenu.razor
diff --git a/MP-STATS/Shared/NavMenu.razor.css b/MP.Stats/Shared/NavMenu.razor.css
similarity index 100%
rename from MP-STATS/Shared/NavMenu.razor.css
rename to MP.Stats/Shared/NavMenu.razor.css
diff --git a/MP-STATS/Startup.cs b/MP.Stats/Startup.cs
similarity index 98%
rename from MP-STATS/Startup.cs
rename to MP.Stats/Startup.cs
index 433ae5d0..ce078b63 100644
--- a/MP-STATS/Startup.cs
+++ b/MP.Stats/Startup.cs
@@ -5,7 +5,7 @@ using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
-using MP_STATS.Data;
+using MP.Stats.Data;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -14,7 +14,7 @@ using System.Threading.Tasks;
using Microsoft.AspNetCore.Localization;
using System.Globalization;
-namespace MP_STATS
+namespace MP.Stats
{
public class Startup
{
diff --git a/MP-STATS/Startup.cs.bak b/MP.Stats/Startup.cs.bak
similarity index 98%
rename from MP-STATS/Startup.cs.bak
rename to MP.Stats/Startup.cs.bak
index 137eb51f..bb9ae887 100644
--- a/MP-STATS/Startup.cs.bak
+++ b/MP.Stats/Startup.cs.bak
@@ -5,7 +5,7 @@ using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
-using MP_STATS.Data;
+using MP.Stats.Data;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -14,7 +14,7 @@ using System.Threading.Tasks;
using Microsoft.AspNetCore.Localization;
using System.Globalization;
-namespace MP_STATS
+namespace MP.Stats
{
public class Startup
{
diff --git a/MP-STATS/_Imports.razor b/MP.Stats/_Imports.razor
similarity index 89%
rename from MP-STATS/_Imports.razor
rename to MP.Stats/_Imports.razor
index a33d6b96..b335524c 100644
--- a/MP-STATS/_Imports.razor
+++ b/MP.Stats/_Imports.razor
@@ -6,5 +6,5 @@
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
-@using MP_STATS
-@using MP_STATS.Shared
+@using MP.Stats
+@using MP.Stats.Shared
diff --git a/MP-STATS/appsettings.Development.json b/MP.Stats/appsettings.Development.json
similarity index 100%
rename from MP-STATS/appsettings.Development.json
rename to MP.Stats/appsettings.Development.json
diff --git a/MP-STATS/appsettings.Production.json b/MP.Stats/appsettings.Production.json
similarity index 100%
rename from MP-STATS/appsettings.Production.json
rename to MP.Stats/appsettings.Production.json
diff --git a/MP-STATS/appsettings.Staging.json b/MP.Stats/appsettings.Staging.json
similarity index 100%
rename from MP-STATS/appsettings.Staging.json
rename to MP.Stats/appsettings.Staging.json
diff --git a/MP-STATS/appsettings.json b/MP.Stats/appsettings.json
similarity index 100%
rename from MP-STATS/appsettings.json
rename to MP.Stats/appsettings.json
diff --git a/MP-STATS/appsettings.json.bak b/MP.Stats/appsettings.json.bak
similarity index 100%
rename from MP-STATS/appsettings.json.bak
rename to MP.Stats/appsettings.json.bak
diff --git a/MP-STATS/logs/.placeholder b/MP.Stats/logs/.placeholder
similarity index 100%
rename from MP-STATS/logs/.placeholder
rename to MP.Stats/logs/.placeholder
diff --git a/MP-STATS/post-build.ps1 b/MP.Stats/post-build.ps1
similarity index 100%
rename from MP-STATS/post-build.ps1
rename to MP.Stats/post-build.ps1
diff --git a/MP-STATS/wwwroot/css/bootstrap/bootstrap.min.css b/MP.Stats/wwwroot/css/bootstrap/bootstrap.min.css
similarity index 100%
rename from MP-STATS/wwwroot/css/bootstrap/bootstrap.min.css
rename to MP.Stats/wwwroot/css/bootstrap/bootstrap.min.css
diff --git a/MP-STATS/wwwroot/css/bootstrap/bootstrap.min.css.map b/MP.Stats/wwwroot/css/bootstrap/bootstrap.min.css.map
similarity index 100%
rename from MP-STATS/wwwroot/css/bootstrap/bootstrap.min.css.map
rename to MP.Stats/wwwroot/css/bootstrap/bootstrap.min.css.map
diff --git a/MP-STATS/wwwroot/css/fonts.css b/MP.Stats/wwwroot/css/fonts.css
similarity index 100%
rename from MP-STATS/wwwroot/css/fonts.css
rename to MP.Stats/wwwroot/css/fonts.css
diff --git a/MP-STATS/wwwroot/css/fonts.less b/MP.Stats/wwwroot/css/fonts.less
similarity index 100%
rename from MP-STATS/wwwroot/css/fonts.less
rename to MP.Stats/wwwroot/css/fonts.less
diff --git a/MP-STATS/wwwroot/css/open-iconic/FONT-LICENSE b/MP.Stats/wwwroot/css/open-iconic/FONT-LICENSE
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/FONT-LICENSE
rename to MP.Stats/wwwroot/css/open-iconic/FONT-LICENSE
diff --git a/MP-STATS/wwwroot/css/open-iconic/ICON-LICENSE b/MP.Stats/wwwroot/css/open-iconic/ICON-LICENSE
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/ICON-LICENSE
rename to MP.Stats/wwwroot/css/open-iconic/ICON-LICENSE
diff --git a/MP-STATS/wwwroot/css/open-iconic/README.md b/MP.Stats/wwwroot/css/open-iconic/README.md
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/README.md
rename to MP.Stats/wwwroot/css/open-iconic/README.md
diff --git a/MP-STATS/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css b/MP.Stats/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css
rename to MP.Stats/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css
diff --git a/MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.eot b/MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
rename to MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
diff --git a/MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.otf b/MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
rename to MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
diff --git a/MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.svg b/MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.svg
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.svg
rename to MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.svg
diff --git a/MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf b/MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
rename to MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
diff --git a/MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.woff b/MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
similarity index 100%
rename from MP-STATS/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
rename to MP.Stats/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
diff --git a/MP-STATS/wwwroot/css/site.css b/MP.Stats/wwwroot/css/site.css
similarity index 100%
rename from MP-STATS/wwwroot/css/site.css
rename to MP.Stats/wwwroot/css/site.css
diff --git a/MP-STATS/wwwroot/css/site.less b/MP.Stats/wwwroot/css/site.less
similarity index 100%
rename from MP-STATS/wwwroot/css/site.less
rename to MP.Stats/wwwroot/css/site.less
diff --git a/MP-STATS/wwwroot/favicon.ico b/MP.Stats/wwwroot/favicon.ico
similarity index 100%
rename from MP-STATS/wwwroot/favicon.ico
rename to MP.Stats/wwwroot/favicon.ico
diff --git a/MP-STATS/wwwroot/fonts/lato-v17-latin-regular.eot b/MP.Stats/wwwroot/fonts/lato-v17-latin-regular.eot
similarity index 100%
rename from MP-STATS/wwwroot/fonts/lato-v17-latin-regular.eot
rename to MP.Stats/wwwroot/fonts/lato-v17-latin-regular.eot
diff --git a/MP-STATS/wwwroot/fonts/lato-v17-latin-regular.svg b/MP.Stats/wwwroot/fonts/lato-v17-latin-regular.svg
similarity index 100%
rename from MP-STATS/wwwroot/fonts/lato-v17-latin-regular.svg
rename to MP.Stats/wwwroot/fonts/lato-v17-latin-regular.svg
diff --git a/MP-STATS/wwwroot/fonts/lato-v17-latin-regular.ttf b/MP.Stats/wwwroot/fonts/lato-v17-latin-regular.ttf
similarity index 100%
rename from MP-STATS/wwwroot/fonts/lato-v17-latin-regular.ttf
rename to MP.Stats/wwwroot/fonts/lato-v17-latin-regular.ttf
diff --git a/MP-STATS/wwwroot/fonts/lato-v17-latin-regular.woff b/MP.Stats/wwwroot/fonts/lato-v17-latin-regular.woff
similarity index 100%
rename from MP-STATS/wwwroot/fonts/lato-v17-latin-regular.woff
rename to MP.Stats/wwwroot/fonts/lato-v17-latin-regular.woff
diff --git a/MP-STATS/wwwroot/fonts/lato-v17-latin-regular.woff2 b/MP.Stats/wwwroot/fonts/lato-v17-latin-regular.woff2
similarity index 100%
rename from MP-STATS/wwwroot/fonts/lato-v17-latin-regular.woff2
rename to MP.Stats/wwwroot/fonts/lato-v17-latin-regular.woff2
diff --git a/MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.eot b/MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.eot
similarity index 100%
rename from MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.eot
rename to MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.eot
diff --git a/MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.svg b/MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.svg
similarity index 100%
rename from MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.svg
rename to MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.svg
diff --git a/MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.ttf b/MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.ttf
similarity index 100%
rename from MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.ttf
rename to MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.ttf
diff --git a/MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.woff b/MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.woff
similarity index 100%
rename from MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.woff
rename to MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.woff
diff --git a/MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.woff2 b/MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.woff2
similarity index 100%
rename from MP-STATS/wwwroot/fonts/roboto-v27-latin-regular.woff2
rename to MP.Stats/wwwroot/fonts/roboto-v27-latin-regular.woff2
diff --git a/MP-STATS/wwwroot/img/LogoBlu.svg b/MP.Stats/wwwroot/img/LogoBlu.svg
similarity index 100%
rename from MP-STATS/wwwroot/img/LogoBlu.svg
rename to MP.Stats/wwwroot/img/LogoBlu.svg
diff --git a/MP-STATS/wwwroot/js/debounce.js b/MP.Stats/wwwroot/js/debounce.js
similarity index 100%
rename from MP-STATS/wwwroot/js/debounce.js
rename to MP.Stats/wwwroot/js/debounce.js
diff --git a/MP-STATS/wwwroot/js/external.js b/MP.Stats/wwwroot/js/external.js
similarity index 100%
rename from MP-STATS/wwwroot/js/external.js
rename to MP.Stats/wwwroot/js/external.js