diff --git a/CodeBeam.MudExtensions.UnitTest/CodeBeam.MudExtensions.UnitTest.csproj b/CodeBeam.MudExtensions.UnitTest/CodeBeam.MudExtensions.UnitTest.csproj deleted file mode 100644 index 44c25659..00000000 --- a/CodeBeam.MudExtensions.UnitTest/CodeBeam.MudExtensions.UnitTest.csproj +++ /dev/null @@ -1,29 +0,0 @@ - - - - net6.0 - enable - enable - - false - - - - - - - - - - - - - - - - - - - - - diff --git a/CodeBeam.MudExtensions.UnitTest.Viewer/App.razor b/CodeBeam.MudExtensions.UnitTests.Viewer/App.razor similarity index 100% rename from CodeBeam.MudExtensions.UnitTest.Viewer/App.razor rename to CodeBeam.MudExtensions.UnitTests.Viewer/App.razor diff --git a/CodeBeam.MudExtensions.UnitTest.Viewer/CodeBeam.MudExtensions.UnitTest.Viewer.csproj b/CodeBeam.MudExtensions.UnitTests.Viewer/CodeBeam.MudExtensions.UnitTests.Viewer.csproj similarity index 66% rename from CodeBeam.MudExtensions.UnitTest.Viewer/CodeBeam.MudExtensions.UnitTest.Viewer.csproj rename to CodeBeam.MudExtensions.UnitTests.Viewer/CodeBeam.MudExtensions.UnitTests.Viewer.csproj index 0d868fe1..05410c51 100644 --- a/CodeBeam.MudExtensions.UnitTest.Viewer/CodeBeam.MudExtensions.UnitTest.Viewer.csproj +++ b/CodeBeam.MudExtensions.UnitTests.Viewer/CodeBeam.MudExtensions.UnitTests.Viewer.csproj @@ -5,15 +5,15 @@ disable enable - + - - - + - - - + + + + + diff --git a/CodeBeam.MudExtensions.UnitTest.Viewer/Pages/Index.razor b/CodeBeam.MudExtensions.UnitTests.Viewer/Pages/Index.razor similarity index 57% rename from CodeBeam.MudExtensions.UnitTest.Viewer/Pages/Index.razor rename to CodeBeam.MudExtensions.UnitTests.Viewer/Pages/Index.razor index 6085c4aa..a6f4207c 100644 --- a/CodeBeam.MudExtensions.UnitTest.Viewer/Pages/Index.razor +++ b/CodeBeam.MudExtensions.UnitTests.Viewer/Pages/Index.razor @@ -6,4 +6,4 @@ Welcome to your new app. - + diff --git a/CodeBeam.MudExtensions.UnitTest.Viewer/Program.cs b/CodeBeam.MudExtensions.UnitTests.Viewer/Program.cs similarity index 73% rename from CodeBeam.MudExtensions.UnitTest.Viewer/Program.cs rename to CodeBeam.MudExtensions.UnitTests.Viewer/Program.cs index e87c66f7..844aea13 100644 --- a/CodeBeam.MudExtensions.UnitTest.Viewer/Program.cs +++ b/CodeBeam.MudExtensions.UnitTests.Viewer/Program.cs @@ -1,11 +1,14 @@ -using CodeBeam.MudExtensions.UnitTest.Viewer; +using CodeBeam.MudExtensions.UnitTests.Viewer; using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using MudBlazor.Services; var builder = WebAssemblyHostBuilder.CreateDefault(args); builder.RootComponents.Add("#app"); builder.RootComponents.Add("head::after"); builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); +builder.Services.AddMudServices(); +builder.Services.AddMudExtensions(); await builder.Build().RunAsync(); diff --git a/CodeBeam.MudExtensions.UnitTest.Viewer/Properties/launchSettings.json b/CodeBeam.MudExtensions.UnitTests.Viewer/Properties/launchSettings.json similarity index 100% rename from CodeBeam.MudExtensions.UnitTest.Viewer/Properties/launchSettings.json rename to CodeBeam.MudExtensions.UnitTests.Viewer/Properties/launchSettings.json diff --git a/CodeBeam.MudExtensions.UnitTest.Viewer/Shared/MainLayout.razor b/CodeBeam.MudExtensions.UnitTests.Viewer/Shared/MainLayout.razor similarity index 83% rename from CodeBeam.MudExtensions.UnitTest.Viewer/Shared/MainLayout.razor rename to CodeBeam.MudExtensions.UnitTests.Viewer/Shared/MainLayout.razor index 839b8fe6..d5afdf4c 100644 --- a/CodeBeam.MudExtensions.UnitTest.Viewer/Shared/MainLayout.razor +++ b/CodeBeam.MudExtensions.UnitTests.Viewer/Shared/MainLayout.razor @@ -15,3 +15,7 @@ + + + + diff --git a/CodeBeam.MudExtensions.UnitTest.Viewer/Shared/MainLayout.razor.css b/CodeBeam.MudExtensions.UnitTests.Viewer/Shared/MainLayout.razor.css similarity index 100% rename from CodeBeam.MudExtensions.UnitTest.Viewer/Shared/MainLayout.razor.css rename to CodeBeam.MudExtensions.UnitTests.Viewer/Shared/MainLayout.razor.css diff --git a/CodeBeam.MudExtensions.UnitTest.Viewer/Shared/NavMenu.razor b/CodeBeam.MudExtensions.UnitTests.Viewer/Shared/NavMenu.razor similarity index 92% rename from CodeBeam.MudExtensions.UnitTest.Viewer/Shared/NavMenu.razor rename to CodeBeam.MudExtensions.UnitTests.Viewer/Shared/NavMenu.razor index 2f5bcad5..056428cd 100644 --- a/CodeBeam.MudExtensions.UnitTest.Viewer/Shared/NavMenu.razor +++ b/CodeBeam.MudExtensions.UnitTests.Viewer/Shared/NavMenu.razor @@ -1,6 +1,6 @@