Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidEggenberger committed Nov 22, 2024
2 parents b33d584 + e65c4f3 commit adcd024
Show file tree
Hide file tree
Showing 34 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ModularMonolith.sln
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modules.TenantIdentity.Feat
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modules.TenantIdentity.Web.Client", "Source\Modules\TenantIdentity\Web\Client\Modules.TenantIdentity.Web.Client.csproj", "{D5015915-70A7-43CE-8E29-34F6C71F960E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modules.TenantIdentity.Shared", "Source\Modules\TenantIdentity\Web\Shared\Modules.TenantIdentity.Shared.csproj", "{74FE9343-CE51-4716-BADD-2603348C1677}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modules.TenantIdentity.Shared", "Source\Modules\TenantIdentity\Shared\Modules.TenantIdentity.Shared.csproj", "{74FE9343-CE51-4716-BADD-2603348C1677}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modules.TenantIdentity.Web.Server", "Source\Modules\TenantIdentity\Web\Server\Modules.TenantIdentity.Web.Server.csproj", "{D5B57887-1F64-4F6F-8793-0530DB9942DB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Shared.Features", "Source\Shared\Features\Shared.Features.csproj", "{F467D121-BDE5-451B-B175-B01F3E7E634F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "LandingPages", "LandingPages", "{5A77BA95-9C7B-41BE-A4F4-CF2FE18CFA03}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modules.LandingPages.Web", "Source\Modules\LandingPages\Modules.LandingPages.Web.Server\Modules.LandingPages.Web.csproj", "{64CFB1A8-0F27-4990-97E8-2023BF6D5DF0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modules.LandingPages.Web", "Source\Modules\LandingPages\Server\Modules.LandingPages.Web.csproj", "{64CFB1A8-0F27-4990-97E8-2023BF6D5DF0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Subscriptions", "Subscriptions", "{78544110-543F-4351-8096-077CC56B4E1E}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

<ItemGroup>
<ProjectReference Include="..\..\..\Shared\Features\Shared.Features.csproj" />
<ProjectReference Include="..\..\..\Shared\Kernel\Shared.Kernel.csproj" />
<ProjectReference Include="..\..\Subscriptions\IntegrationEvents\Modules.Subscriptions.IntegrationEvents.csproj" />
<ProjectReference Include="..\IntegrationEvents\Modules.TenantIdentity.IntegrationEvents.csproj" />
<ProjectReference Include="..\Shared\Modules.TenantIdentity.Shared.csproj" />
<ProjectReference Include="..\Web\Shared\Modules.TenantIdentity.Shared.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace Modules.TenantIdentity.Web.Shared.DTOs.IdentityOperations
namespace Modules.TenantIdentity.Shared.DTOs.IdentityOperations
{
public class BFFUserInfoDTO
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Modules.TenantIdentity.Web.Shared.DTOs.IdentityOperations
namespace Modules.TenantIdentity.Shared.DTOs.IdentityOperations
{
public class ClaimValueDTO
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\Shared\Kernel\Shared.Kernel.csproj" />
<ProjectReference Include="..\..\..\Shared\Kernel\Shared.Kernel.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Modules.TenantIdentity.Features.DomainFeatures.Users;
using Modules.TenantIdentity.Features.DomainFeatures.Users.Application.Commands;
using Modules.TenantIdentity.Features.DomainFeatures.Users.Application.Queries;
using Modules.TenantIdentity.Web.Shared.DTOs.IdentityOperations;
using Modules.TenantIdentity.Shared.DTOs.IdentityOperations;
using Shared.Features.Server;
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<ItemGroup>
<ProjectReference Include="..\..\Features\Modules.TenantIdentity.Features.csproj" />
<ProjectReference Include="..\Shared\Modules.TenantIdentity.Shared.csproj" />
<ProjectReference Include="..\..\Shared\Modules.TenantIdentity.Shared.csproj" />
</ItemGroup>

</Project>
1 change: 0 additions & 1 deletion Source/Shared/Features/Modules/Registrator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public static IServiceCollection AddModule<TModule, TModuleStartup>(this IServic
var moduleStartup = (IModuleStartup)Activator.CreateInstance(typeof(TModuleStartup));
moduleStartup.ConfigureServices(services, config);

var module = ActivatorUtilities.CreateInstance<TModule>(services.BuildServiceProvider());
services.AddScoped<TModule>();
services.AddMessagingForModule(typeof(TModule));

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.Components;
using Modules.TenantIdentity.Web.Shared.DTOs.IdentityOperations;
using Shared.Kernel.BuildingBlocks.Auth.Constants;
using System.Net.Http;
using System.Net;
Expand All @@ -9,6 +8,7 @@
using System;
using System.Net.Http.Json;
using Shared.Kernel.Constants.Endpoints;
using Modules.TenantIdentity.Shared.DTOs.IdentityOperations;

namespace Web.Client.BuildingBlocks.Auth
{
Expand Down
1 change: 1 addition & 0 deletions Source/Web/Client/Web.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Modules\TenantIdentity\Shared\Modules.TenantIdentity.Shared.csproj" />
<ProjectReference Include="..\..\Modules\TenantIdentity\Web\Client\Modules.TenantIdentity.Web.Client.csproj" />
<ProjectReference Include="..\..\Shared\Client\Shared.Client.csproj" />
</ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions Source/Web/Server/Web.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

<ItemGroup>
<ProjectReference Include="..\..\Modules\LandingPages\Modules.LandingPages.Web.Server\Modules.LandingPages.Web.csproj" />
<ProjectReference Include="..\..\Modules\LandingPages\Server\Modules.LandingPages.Web.csproj" />
<ProjectReference Include="..\..\Modules\Subscriptions\Web\Server\Modules.Subscriptions.Web.Server.csproj" />
<ProjectReference Include="..\..\Modules\TenantIdentity\Web\Server\Modules.TenantIdentity.Web.Server.csproj" />
<ProjectReference Include="..\..\Shared\Features\Shared.Features.csproj" />
Expand Down

0 comments on commit adcd024

Please sign in to comment.