Skip to content

Commit 7feb0b7

Browse files
authored
v7 Preparation: File Arrangements (#377)
* v7 Preparation File Arrangements * Fix Remaining Changed Namespace * Fix Other Projects Remaining Namespaces
1 parent 12f3c58 commit 7feb0b7

File tree

176 files changed

+614
-586
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+614
-586
lines changed

ComponentViewer/App.razor renamed to CodeBeam.MudBlazor.Extensions.Docs.Server/App.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<Router AppAssembly="@typeof(ComponentViewer.Docs.Pages.Index).Assembly">
1+
<Router AppAssembly="@typeof(MudExtensions.Docs.Pages.Index).Assembly">
22
<Found Context="routeData">
3-
<RouteView RouteData="@routeData" DefaultLayout="@typeof(ComponentViewer.Docs.Shared.MainLayout)" />
3+
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MudExtensions.Docs.Shared.MainLayout)" />
44
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
55
</Found>
66
<NotFound>
77
<PageTitle>Not found</PageTitle>
8-
<LayoutView Layout="@typeof(ComponentViewer.Docs.Shared.MainLayout)">
8+
<LayoutView Layout="@typeof(MudExtensions.Docs.Shared.MainLayout)">
99
<p role="alert">Sorry, there's nothing at this address.</p>
1010
</LayoutView>
1111
</NotFound>

ComponentViewer/ComponentViewer.csproj renamed to CodeBeam.MudBlazor.Extensions.Docs.Server/CodeBeam.MudBlazor.Extensions.Docs.Server.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<RootNamespace>MudExtensions.Docs.Server</RootNamespace>
78
</PropertyGroup>
89

910
<ItemGroup>
1011
<ProjectReference Include="..\CodeBeam.MudBlazor.Extensions\CodeBeam.MudBlazor.Extensions.csproj" />
11-
<ProjectReference Include="..\ComponentViewer.Docs\ComponentViewer.Docs.csproj" />
12+
<ProjectReference Include="..\CodeBeam.MudBlazor.Extensions.Docs\CodeBeam.MudBlazor.Extensions.Docs.csproj" />
1213
</ItemGroup>
1314

1415
</Project>

ComponentViewer/Pages/_Host.cshtml renamed to CodeBeam.MudBlazor.Extensions.Docs.Server/Pages/_Host.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@page "/"
2-
@namespace ComponentViewer.Pages
2+
@namespace MudExtensions.Docs.Server.Pages
33
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
44
@{
55
Layout = "_Layout";

ComponentViewer/Pages/_Layout.cshtml renamed to CodeBeam.MudBlazor.Extensions.Docs.Server/Pages/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@using Microsoft.AspNetCore.Components.Web
2-
@namespace ComponentViewer.Pages
2+
@namespace CodeBeam.MudBlazor.Extensions.Docs.Server.Pages
33
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
44

55
<!DOCTYPE html>
File renamed without changes.

ComponentViewer/Properties/launchSettings.json renamed to CodeBeam.MudBlazor.Extensions.Docs.Server/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}
99
},
1010
"profiles": {
11-
"ComponentViewer": {
11+
"CodeBeam.MudBlazor.Extensions.Docs.Server": {
1212
"commandName": "Project",
1313
"dotnetRunMessages": true,
1414
"launchBrowser": true,

ComponentViewer/_Imports.razor renamed to CodeBeam.MudBlazor.Extensions.Docs.Server/_Imports.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@using Microsoft.AspNetCore.Components.Web
77
@using Microsoft.AspNetCore.Components.Web.Virtualization
88
@using Microsoft.JSInterop
9-
@using ComponentViewer
9+
@using MudExtensions.Docs.Server
1010

1111
@using MudBlazor
1212
@using MudExtensions

0 commit comments

Comments
 (0)