diff --git a/docs/SemanticKernel-Quick-start-Blazor-Side-by-Side.png b/docs/SemanticKernel-Quick-start-Blazor-Side-by-Side.png index e27d7f1..c169426 100644 Binary files a/docs/SemanticKernel-Quick-start-Blazor-Side-by-Side.png and b/docs/SemanticKernel-Quick-start-Blazor-Side-by-Side.png differ diff --git a/src/Aspects.Components/Aspects.Components.csproj b/src/Aspects.Components/Aspects.Components.csproj deleted file mode 100644 index 1e318ff..0000000 --- a/src/Aspects.Components/Aspects.Components.csproj +++ /dev/null @@ -1,34 +0,0 @@ - - - - Cannery.Aspects.Components - Cannery.Aspects.Components - 1.0.0 - net10.0 - enable - enable - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Aspects.Components/FormChangeType.cs b/src/Aspects.Components/FormChangeType.cs deleted file mode 100644 index 6054a4d..0000000 --- a/src/Aspects.Components/FormChangeType.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Cannery.Aspects.Components; - -public enum FormChangeType -{ - Created, - Updated, - Deleted -} diff --git a/src/Aspects.Components/_Imports.razor b/src/Aspects.Components/_Imports.razor deleted file mode 100644 index b76d949..0000000 --- a/src/Aspects.Components/_Imports.razor +++ /dev/null @@ -1,6 +0,0 @@ -@using Microsoft.AspNetCore.Authorization -@using Microsoft.AspNetCore.Components.Forms -@using Microsoft.AspNetCore.Components.Web -@using Microsoft.FluentUI.AspNetCore.Components -@using Icons = Microsoft.FluentUI.AspNetCore.Components.Icons -@using System.ComponentModel.DataAnnotations \ No newline at end of file diff --git a/src/Aspects.Components/Analytics/ClarityAnalytics.razor b/src/Presentation.Blazor/Components/Analytics/ClarityAnalytics.razor similarity index 100% rename from src/Aspects.Components/Analytics/ClarityAnalytics.razor rename to src/Presentation.Blazor/Components/Analytics/ClarityAnalytics.razor diff --git a/src/Presentation.Blazor/Components/App.razor b/src/Presentation.Blazor/Components/App.razor index 7203064..639e225 100644 --- a/src/Presentation.Blazor/Components/App.razor +++ b/src/Presentation.Blazor/Components/App.razor @@ -1,4 +1,4 @@ -@using Cannery.Aspects.Components.Analytics +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Analytics @inject IConfiguration Configuration diff --git a/src/Aspects.Components/Auth/Components/UserAuthMenu.razor b/src/Presentation.Blazor/Components/Auth/Components/UserAuthMenu.razor similarity index 91% rename from src/Aspects.Components/Auth/Components/UserAuthMenu.razor rename to src/Presentation.Blazor/Components/Auth/Components/UserAuthMenu.razor index d54c4db..ae76609 100644 --- a/src/Aspects.Components/Auth/Components/UserAuthMenu.razor +++ b/src/Presentation.Blazor/Components/Auth/Components/UserAuthMenu.razor @@ -1,4 +1,4 @@ -@using Cannery.Aspects.Components.Auth.Routing +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Routing @using Microsoft.AspNetCore.Components.Authorization @using Microsoft.FluentUI.AspNetCore.Components diff --git a/src/Aspects.Components/Auth/Components/UserProfile.razor b/src/Presentation.Blazor/Components/Auth/Components/UserProfile.razor similarity index 97% rename from src/Aspects.Components/Auth/Components/UserProfile.razor rename to src/Presentation.Blazor/Components/Auth/Components/UserProfile.razor index 5ee3d34..dd94cbe 100644 --- a/src/Aspects.Components/Auth/Components/UserProfile.razor +++ b/src/Presentation.Blazor/Components/Auth/Components/UserProfile.razor @@ -1,4 +1,4 @@ -@using Cannery.Aspects.Components.Auth.Routing +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Routing @using Microsoft.AspNetCore.Components.Authorization @inject NavigationManager Navigation diff --git a/src/Aspects.Components/Auth/IUserClaimsInfo.cs b/src/Presentation.Blazor/Components/Auth/IUserClaimsInfo.cs similarity index 95% rename from src/Aspects.Components/Auth/IUserClaimsInfo.cs rename to src/Presentation.Blazor/Components/Auth/IUserClaimsInfo.cs index e727597..a45bc61 100644 --- a/src/Aspects.Components/Auth/IUserClaimsInfo.cs +++ b/src/Presentation.Blazor/Components/Auth/IUserClaimsInfo.cs @@ -1,4 +1,4 @@ -namespace Cannery.Aspects.Components.Auth; +namespace Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth; /// /// Represents a user's information, including identifiers, personal details, and contact information. diff --git a/src/Aspects.Components/Auth/Middleware/DownstreamApiAccessTokenProvider.cs b/src/Presentation.Blazor/Components/Auth/Middleware/DownstreamApiAccessTokenProvider.cs similarity index 92% rename from src/Aspects.Components/Auth/Middleware/DownstreamApiAccessTokenProvider.cs rename to src/Presentation.Blazor/Components/Auth/Middleware/DownstreamApiAccessTokenProvider.cs index 8f166da..7b42a81 100644 --- a/src/Aspects.Components/Auth/Middleware/DownstreamApiAccessTokenProvider.cs +++ b/src/Presentation.Blazor/Components/Auth/Middleware/DownstreamApiAccessTokenProvider.cs @@ -3,7 +3,7 @@ using Microsoft.Extensions.Configuration; using Microsoft.Identity.Web; -namespace Cannery.Aspects.Components.Auth.Middleware; +namespace Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Middleware; public class DownstreamApiAccessTokenProvider(IHttpContextAccessor httpContextAccessor, ITokenAcquisition tokenAcquisition, IConfiguration configuration) : IAccessTokenProvider { diff --git a/src/Aspects.Components/Auth/Middleware/MsGraphAccessTokenProvider.cs b/src/Presentation.Blazor/Components/Auth/Middleware/MsGraphAccessTokenProvider.cs similarity index 89% rename from src/Aspects.Components/Auth/Middleware/MsGraphAccessTokenProvider.cs rename to src/Presentation.Blazor/Components/Auth/Middleware/MsGraphAccessTokenProvider.cs index 9c1b6b3..c1109b2 100644 --- a/src/Aspects.Components/Auth/Middleware/MsGraphAccessTokenProvider.cs +++ b/src/Presentation.Blazor/Components/Auth/Middleware/MsGraphAccessTokenProvider.cs @@ -3,7 +3,7 @@ using Microsoft.AspNetCore.Authentication.OpenIdConnect; using Microsoft.AspNetCore.Http; -namespace Cannery.Aspects.Components.Auth.Middleware; +namespace Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Middleware; public class MsGraphAccessTokenProvider(IHttpContextAccessor httpContextAccessor) : IAccessTokenProvider { diff --git a/src/Aspects.Components/Auth/Routing/LoginLogoutEndpointRouteBuilderExtensions.cs b/src/Presentation.Blazor/Components/Auth/Routing/LoginLogoutEndpointRouteBuilderExtensions.cs similarity index 93% rename from src/Aspects.Components/Auth/Routing/LoginLogoutEndpointRouteBuilderExtensions.cs rename to src/Presentation.Blazor/Components/Auth/Routing/LoginLogoutEndpointRouteBuilderExtensions.cs index 7ef0337..a27c9c5 100644 --- a/src/Aspects.Components/Auth/Routing/LoginLogoutEndpointRouteBuilderExtensions.cs +++ b/src/Presentation.Blazor/Components/Auth/Routing/LoginLogoutEndpointRouteBuilderExtensions.cs @@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Routing; -namespace Cannery.Aspects.Components.Auth.Routing; +namespace Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Routing; public static class LoginLogoutEndpointRouteBuilderExtensions { diff --git a/src/Aspects.Components/Auth/Routing/RedirectToAccessDenied.razor b/src/Presentation.Blazor/Components/Auth/Routing/RedirectToAccessDenied.razor similarity index 100% rename from src/Aspects.Components/Auth/Routing/RedirectToAccessDenied.razor rename to src/Presentation.Blazor/Components/Auth/Routing/RedirectToAccessDenied.razor diff --git a/src/Aspects.Components/Auth/Routing/RedirectToResetPassword.razor b/src/Presentation.Blazor/Components/Auth/Routing/RedirectToResetPassword.razor similarity index 100% rename from src/Aspects.Components/Auth/Routing/RedirectToResetPassword.razor rename to src/Presentation.Blazor/Components/Auth/Routing/RedirectToResetPassword.razor diff --git a/src/Aspects.Components/Auth/Routing/RedirectToSignIn.razor b/src/Presentation.Blazor/Components/Auth/Routing/RedirectToSignIn.razor similarity index 100% rename from src/Aspects.Components/Auth/Routing/RedirectToSignIn.razor rename to src/Presentation.Blazor/Components/Auth/Routing/RedirectToSignIn.razor diff --git a/src/Aspects.Components/Auth/Routing/RedirectToSignOut.razor b/src/Presentation.Blazor/Components/Auth/Routing/RedirectToSignOut.razor similarity index 75% rename from src/Aspects.Components/Auth/Routing/RedirectToSignOut.razor rename to src/Presentation.Blazor/Components/Auth/Routing/RedirectToSignOut.razor index 279183c..96fde7d 100644 --- a/src/Aspects.Components/Auth/Routing/RedirectToSignOut.razor +++ b/src/Presentation.Blazor/Components/Auth/Routing/RedirectToSignOut.razor @@ -1,4 +1,4 @@ -@using Cannery.Aspects.Components.Auth.Routing +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Routing @inject NavigationManager Navigation diff --git a/src/Aspects.Components/Auth/Routing/RouteConstants.cs b/src/Presentation.Blazor/Components/Auth/Routing/RouteConstants.cs similarity index 85% rename from src/Aspects.Components/Auth/Routing/RouteConstants.cs rename to src/Presentation.Blazor/Components/Auth/Routing/RouteConstants.cs index 65540c0..601e49e 100644 --- a/src/Aspects.Components/Auth/Routing/RouteConstants.cs +++ b/src/Presentation.Blazor/Components/Auth/Routing/RouteConstants.cs @@ -1,4 +1,4 @@ -namespace Cannery.Aspects.Components.Auth.Routing; +namespace Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Routing; public partial struct RouteConstants { diff --git a/src/Aspects.Components/Auth/Services/IUserSyncService.cs b/src/Presentation.Blazor/Components/Auth/Services/IUserSyncService.cs similarity index 66% rename from src/Aspects.Components/Auth/Services/IUserSyncService.cs rename to src/Presentation.Blazor/Components/Auth/Services/IUserSyncService.cs index c7e8a9d..a282607 100644 --- a/src/Aspects.Components/Auth/Services/IUserSyncService.cs +++ b/src/Presentation.Blazor/Components/Auth/Services/IUserSyncService.cs @@ -1,6 +1,6 @@ using System.Security.Claims; -namespace Cannery.Aspects.Components.Auth.Services; +namespace Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Services; public interface IUserSyncService { diff --git a/src/Aspects.Components/Auth/UserClaimsInfo.cs b/src/Presentation.Blazor/Components/Auth/UserClaimsInfo.cs similarity index 97% rename from src/Aspects.Components/Auth/UserClaimsInfo.cs rename to src/Presentation.Blazor/Components/Auth/UserClaimsInfo.cs index 540f43d..5a00bf3 100644 --- a/src/Aspects.Components/Auth/UserClaimsInfo.cs +++ b/src/Presentation.Blazor/Components/Auth/UserClaimsInfo.cs @@ -1,6 +1,6 @@ using Microsoft.AspNetCore.Http; -namespace Cannery.Aspects.Components.Auth; +namespace Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth; /// /// User information implementation that retrieves data from the current HTTP context. diff --git a/src/Presentation.Blazor/Components/FormChangeType.cs b/src/Presentation.Blazor/Components/FormChangeType.cs new file mode 100644 index 0000000..6baf442 --- /dev/null +++ b/src/Presentation.Blazor/Components/FormChangeType.cs @@ -0,0 +1,8 @@ +namespace Goodtocode.SemanticKernel.Presentation.Blazor.Components; + +public enum FormChangeType +{ + Created, + Updated, + Deleted +} diff --git a/src/Aspects.Components/Icons/ArrowIcon.razor b/src/Presentation.Blazor/Components/Icons/ArrowIcon.razor similarity index 100% rename from src/Aspects.Components/Icons/ArrowIcon.razor rename to src/Presentation.Blazor/Components/Icons/ArrowIcon.razor diff --git a/src/Presentation.Blazor/Components/Layout/MainLayout.razor b/src/Presentation.Blazor/Components/Layout/MainLayout.razor index 7676a6a..cc8aa20 100644 --- a/src/Presentation.Blazor/Components/Layout/MainLayout.razor +++ b/src/Presentation.Blazor/Components/Layout/MainLayout.razor @@ -1,6 +1,6 @@ -@using Cannery.Aspects.Components.Auth.Components -@using Cannery.Aspects.Components.Auth.Routing -@using Cannery.Aspects.Components.Auth.Services +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Components +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Routing +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Services @using Microsoft.AspNetCore.Components.Authorization @using Microsoft.Identity.Web @@ -13,10 +13,10 @@
- Cloud in a Can + Cloud in a Can - Semantic Kernel + Semantic Kernel Quick-start diff --git a/src/Presentation.Blazor/Components/Routes.razor b/src/Presentation.Blazor/Components/Routes.razor index 334ebe2..745e2c0 100644 --- a/src/Presentation.Blazor/Components/Routes.razor +++ b/src/Presentation.Blazor/Components/Routes.razor @@ -1,4 +1,4 @@ -@using Cannery.Aspects.Components.Auth.Routing +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Routing @using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Layout @using Microsoft.AspNetCore.Components.Authorization diff --git a/src/Aspects.Components/Skeleton/SkeletonList.razor b/src/Presentation.Blazor/Components/Skeleton/SkeletonList.razor similarity index 100% rename from src/Aspects.Components/Skeleton/SkeletonList.razor rename to src/Presentation.Blazor/Components/Skeleton/SkeletonList.razor diff --git a/src/Aspects.Components/Skeleton/SkeletonTable.razor b/src/Presentation.Blazor/Components/Skeleton/SkeletonTable.razor similarity index 100% rename from src/Aspects.Components/Skeleton/SkeletonTable.razor rename to src/Presentation.Blazor/Components/Skeleton/SkeletonTable.razor diff --git a/src/Aspects.Components/Typography/H1Label.razor b/src/Presentation.Blazor/Components/Typography/H1Label.razor similarity index 100% rename from src/Aspects.Components/Typography/H1Label.razor rename to src/Presentation.Blazor/Components/Typography/H1Label.razor diff --git a/src/Aspects.Components/Typography/H2Label.razor b/src/Presentation.Blazor/Components/Typography/H2Label.razor similarity index 100% rename from src/Aspects.Components/Typography/H2Label.razor rename to src/Presentation.Blazor/Components/Typography/H2Label.razor diff --git a/src/Aspects.Components/Typography/H3Label.razor b/src/Presentation.Blazor/Components/Typography/H3Label.razor similarity index 100% rename from src/Aspects.Components/Typography/H3Label.razor rename to src/Presentation.Blazor/Components/Typography/H3Label.razor diff --git a/src/Aspects.Components/Typography/PLabel.razor b/src/Presentation.Blazor/Components/Typography/PLabel.razor similarity index 100% rename from src/Aspects.Components/Typography/PLabel.razor rename to src/Presentation.Blazor/Components/Typography/PLabel.razor diff --git a/src/Aspects.Components/Wizard/WizardExample.razor b/src/Presentation.Blazor/Components/Wizard/WizardExample.razor similarity index 100% rename from src/Aspects.Components/Wizard/WizardExample.razor rename to src/Presentation.Blazor/Components/Wizard/WizardExample.razor diff --git a/src/Aspects.Components/Wizard/WizardLayout.razor b/src/Presentation.Blazor/Components/Wizard/WizardLayout.razor similarity index 97% rename from src/Aspects.Components/Wizard/WizardLayout.razor rename to src/Presentation.Blazor/Components/Wizard/WizardLayout.razor index c135b49..66fbf41 100644 --- a/src/Aspects.Components/Wizard/WizardLayout.razor +++ b/src/Presentation.Blazor/Components/Wizard/WizardLayout.razor @@ -1,5 +1,5 @@ @using System.Collections.ObjectModel -@using Cannery.Aspects.Components.Icons +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Icons
diff --git a/src/Aspects.Components/Wizard/WizardStep.razor b/src/Presentation.Blazor/Components/Wizard/WizardStep.razor similarity index 100% rename from src/Aspects.Components/Wizard/WizardStep.razor rename to src/Presentation.Blazor/Components/Wizard/WizardStep.razor diff --git a/src/Presentation.Blazor/Components/_Imports.razor b/src/Presentation.Blazor/Components/_Imports.razor index abc971c..8a5e091 100644 --- a/src/Presentation.Blazor/Components/_Imports.razor +++ b/src/Presentation.Blazor/Components/_Imports.razor @@ -8,5 +8,5 @@ @using Icons = Microsoft.FluentUI.AspNetCore.Components.Icons @using Microsoft.JSInterop @using System.ComponentModel.DataAnnotations -@using Cannery.Aspects.Components.Auth -@using Cannery.Aspects.Components.Typography \ No newline at end of file +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Typography \ No newline at end of file diff --git a/src/Presentation.Blazor/ConfigureServices.cs b/src/Presentation.Blazor/ConfigureServices.cs index b6df0f0..2542d93 100644 --- a/src/Presentation.Blazor/ConfigureServices.cs +++ b/src/Presentation.Blazor/ConfigureServices.cs @@ -1,5 +1,5 @@ -using Cannery.Aspects.Components.Auth; -using Cannery.Aspects.Components.Auth.Services; +using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth; +using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Services; using Goodtocode.SemanticKernel.Presentation.Blazor.Options; using Goodtocode.SemanticKernel.Presentation.Blazor.Pages.Chat.Services; using Goodtocode.SemanticKernel.Presentation.Blazor.Services; diff --git a/src/Presentation.Blazor/ConfigureServicesAuth.cs b/src/Presentation.Blazor/ConfigureServicesAuth.cs index 89a4b8e..62eff1d 100644 --- a/src/Presentation.Blazor/ConfigureServicesAuth.cs +++ b/src/Presentation.Blazor/ConfigureServicesAuth.cs @@ -1,5 +1,5 @@ -using Cannery.Aspects.Components.Auth.Middleware; -using Cannery.Aspects.Components.Auth.Services; +using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Middleware; +using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Services; using Goodtocode.SemanticKernel.Presentation.Blazor.Options; using Goodtocode.SecuredHttpClient.Middleware; using Goodtocode.SecuredHttpClient.Options; diff --git a/src/Presentation.Blazor/Pages/Chat/Components/ChatSessionList.razor b/src/Presentation.Blazor/Pages/Chat/Components/ChatSessionList.razor index 6aa534b..4fbd197 100644 --- a/src/Presentation.Blazor/Pages/Chat/Components/ChatSessionList.razor +++ b/src/Presentation.Blazor/Pages/Chat/Components/ChatSessionList.razor @@ -1,4 +1,4 @@ -@using Cannery.Aspects.Components.Skeleton +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Skeleton @using Goodtocode.SemanticKernel.Presentation.Blazor.Pages.Chat.Models @using Goodtocode.SemanticKernel.Presentation.Blazor.Pages.Chat.Services diff --git a/src/Presentation.Blazor/Pages/Chat/Components/ChatSessionScroll.razor b/src/Presentation.Blazor/Pages/Chat/Components/ChatSessionScroll.razor index 2a56fd7..e3856ca 100644 --- a/src/Presentation.Blazor/Pages/Chat/Components/ChatSessionScroll.razor +++ b/src/Presentation.Blazor/Pages/Chat/Components/ChatSessionScroll.razor @@ -1,4 +1,4 @@ -@using Cannery.Aspects.Components.Skeleton +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Skeleton @using Goodtocode.SemanticKernel.Presentation.Blazor.Pages.Chat.Models @using Goodtocode.SemanticKernel.Presentation.Blazor.Pages.Chat.Services diff --git a/src/Presentation.Blazor/Pages/Chat/Services/ChatService.cs b/src/Presentation.Blazor/Pages/Chat/Services/ChatService.cs index 64266d6..7b71101 100644 --- a/src/Presentation.Blazor/Pages/Chat/Services/ChatService.cs +++ b/src/Presentation.Blazor/Pages/Chat/Services/ChatService.cs @@ -1,6 +1,6 @@ using Goodtocode.SemanticKernel.Presentation.WebApi.Client; using Goodtocode.SemanticKernel.Presentation.Blazor.Services; -using Cannery.Aspects.Components.Auth; +using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth; using Goodtocode.SemanticKernel.Presentation.Blazor.Pages.Chat.Models; namespace Goodtocode.SemanticKernel.Presentation.Blazor.Pages.Chat.Services; diff --git a/src/Presentation.Blazor/Pages/HomePage.razor b/src/Presentation.Blazor/Pages/HomePage.razor index ac79fc0..d5c183d 100644 --- a/src/Presentation.Blazor/Pages/HomePage.razor +++ b/src/Presentation.Blazor/Pages/HomePage.razor @@ -1,5 +1,5 @@ @page "/" -@using Cannery.Aspects.Components.Typography +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Typography @using Microsoft.AspNetCore.Authorization @attribute [AllowAnonymous] diff --git a/src/Presentation.Blazor/Pages/_Imports.razor b/src/Presentation.Blazor/Pages/_Imports.razor index ee0243b..1221994 100644 --- a/src/Presentation.Blazor/Pages/_Imports.razor +++ b/src/Presentation.Blazor/Pages/_Imports.razor @@ -10,8 +10,8 @@ @using Microsoft.FluentUI.AspNetCore.Components @using Icons = Microsoft.FluentUI.AspNetCore.Components.Icons @using Microsoft.JSInterop -@using Cannery.Aspects.Components -@using Cannery.Aspects.Components.Auth -@using Cannery.Aspects.Components.Skeleton -@using Cannery.Aspects.Components.Typography +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Skeleton +@using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Typography @using Goodtocode.SemanticKernel.Presentation.WebApi.Client \ No newline at end of file diff --git a/src/Presentation.Blazor/Presentation.Blazor.csproj b/src/Presentation.Blazor/Presentation.Blazor.csproj index 86aec7c..e4c866a 100644 --- a/src/Presentation.Blazor/Presentation.Blazor.csproj +++ b/src/Presentation.Blazor/Presentation.Blazor.csproj @@ -14,6 +14,7 @@ + @@ -25,8 +26,4 @@ - - - - diff --git a/src/Presentation.Blazor/Program.cs b/src/Presentation.Blazor/Program.cs index fe4333a..ca65cf1 100644 --- a/src/Presentation.Blazor/Program.cs +++ b/src/Presentation.Blazor/Program.cs @@ -1,5 +1,5 @@ using Azure.Monitor.OpenTelemetry.AspNetCore; -using Cannery.Aspects.Components.Auth.Routing; +using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Routing; using Goodtocode.SemanticKernel.Presentation.Blazor; using Goodtocode.SemanticKernel.Presentation.Blazor.Components; using Microsoft.AspNetCore.HttpOverrides; diff --git a/src/Presentation.Blazor/Services/UserSyncService.cs b/src/Presentation.Blazor/Services/UserSyncService.cs index f66c311..8a1828b 100644 --- a/src/Presentation.Blazor/Services/UserSyncService.cs +++ b/src/Presentation.Blazor/Services/UserSyncService.cs @@ -1,8 +1,8 @@ using Goodtocode.SemanticKernel.Presentation.WebApi.Client; using System.Security.Authentication; using System.Security.Claims; -using Cannery.Aspects.Components.Auth.Services; -using Cannery.Aspects.Components.Auth; +using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth.Services; +using Goodtocode.SemanticKernel.Presentation.Blazor.Components.Auth; namespace Goodtocode.SemanticKernel.Presentation.Blazor.Services; diff --git a/src/SemanticKernelBlazor.sln b/src/SemanticKernelBlazor.sln index e7f5a27..8c0a085 100644 --- a/src/SemanticKernelBlazor.sln +++ b/src/SemanticKernelBlazor.sln @@ -17,8 +17,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Infrastructure.SemanticKern EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests.Specs.Integration", "Tests.Specs.Integration\Tests.Specs.Integration.csproj", "{5DD2A9DC-4CE9-4E47-BE7D-7EEF208D287F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspects.Components", "Aspects.Components\Aspects.Components.csproj", "{DEFE7F5B-239A-7DB3-FA2C-1D96AB04D354}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -53,10 +51,6 @@ Global {5DD2A9DC-4CE9-4E47-BE7D-7EEF208D287F}.Debug|Any CPU.Build.0 = Debug|Any CPU {5DD2A9DC-4CE9-4E47-BE7D-7EEF208D287F}.Release|Any CPU.ActiveCfg = Release|Any CPU {5DD2A9DC-4CE9-4E47-BE7D-7EEF208D287F}.Release|Any CPU.Build.0 = Release|Any CPU - {DEFE7F5B-239A-7DB3-FA2C-1D96AB04D354}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DEFE7F5B-239A-7DB3-FA2C-1D96AB04D354}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DEFE7F5B-239A-7DB3-FA2C-1D96AB04D354}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DEFE7F5B-239A-7DB3-FA2C-1D96AB04D354}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE