Skip to content

Commit 1379f7a

Browse files
committed
Preparation Of First Release (Part 3/7)
1 parent 4f5bcf7 commit 1379f7a

File tree

18 files changed

+5
-5
lines changed

18 files changed

+5
-5
lines changed

UltimateAuth.slnx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Solution>
22
<Folder Name="/Samples/">
3-
<Project Path="samples/blazor-server/UltimateAuth.BlazorServer/UltimateAuth.BlazorServer.csproj" />
3+
<Project Path="samples/blazor-server/UltimateAuth.Sample.BlazorServer/UltimateAuth.Sample.BlazorServer.csproj" />
44
<Project Path="samples/blazor-standalone-wasm/UltimateAuth.Sample.BlazorStandaloneWasm/UltimateAuth.Sample.BlazorStandaloneWasm.csproj" Id="27bd3c4d-65a9-4c70-a6c9-4178b1897730" />
55
</Folder>
66
<Folder Name="/Solution Items/">

samples/blazor-server/UltimateAuth.BlazorServer/Components/App.razor renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Components/App.razor

File renamed without changes.

samples/blazor-server/UltimateAuth.BlazorServer/Components/Layout/MainLayout.razor renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Components/Layout/MainLayout.razor

File renamed without changes.

samples/blazor-server/UltimateAuth.BlazorServer/Components/Layout/MainLayout.razor.css renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Components/Layout/MainLayout.razor.css

File renamed without changes.

samples/blazor-server/UltimateAuth.BlazorServer/Components/Pages/Error.razor renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Components/Pages/Error.razor

File renamed without changes.

samples/blazor-server/UltimateAuth.BlazorServer/Components/Pages/Home.razor renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Components/Pages/Home.razor

File renamed without changes.

samples/blazor-server/UltimateAuth.BlazorServer/Components/Pages/Home.razor.cs renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Components/Pages/Home.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using CodeBeam.UltimateAuth.Core.Domain;
44
using MudBlazor;
55

6-
namespace UltimateAuth.BlazorServer.Components.Pages
6+
namespace UltimateAuth.Sample.BlazorServer.Components.Pages
77
{
88
public partial class Home
99
{

samples/blazor-server/UltimateAuth.BlazorServer/Components/Routes.razor renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Components/Routes.razor

File renamed without changes.

samples/blazor-server/UltimateAuth.BlazorServer/Components/_Imports.razor renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Components/_Imports.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
@using static Microsoft.AspNetCore.Components.Web.RenderMode
77
@using Microsoft.AspNetCore.Components.Web.Virtualization
88
@using Microsoft.JSInterop
9-
@using UltimateAuth.BlazorServer
10-
@using UltimateAuth.BlazorServer.Components
9+
@using UltimateAuth.Sample.BlazorServer
10+
@using UltimateAuth.Sample.BlazorServer.Components
1111

1212
@using CodeBeam.UltimateAuth.Core.Abstractions
1313
@using CodeBeam.UltimateAuth.Core.Domain

samples/blazor-server/UltimateAuth.BlazorServer/Program.cs renamed to samples/blazor-server/UltimateAuth.Sample.BlazorServer/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Microsoft.AspNetCore.Components;
1010
using MudBlazor.Services;
1111
using MudExtensions.Services;
12-
using UltimateAuth.BlazorServer.Components;
12+
using UltimateAuth.Sample.BlazorServer.Components;
1313

1414
var builder = WebApplication.CreateBuilder(args);
1515

0 commit comments

Comments
 (0)