Skip to content

Commit 9f063fb

Browse files
committed
remove reference to MediatR
1 parent b240fc3 commit 9f063fb

File tree

6 files changed

+37
-321
lines changed

6 files changed

+37
-321
lines changed

Modular.Monolithic.Architecture.Helper.sln

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Elementi di soluzione", "El
1212
EndProject
1313
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Modular.Monolithic.Architecture.Helper.Domain.Test", "test\Modular.Monolithic.Architecture.Helper.Domain.Test\Modular.Monolithic.Architecture.Helper.Domain.Test.csproj", "{2EEB3EA9-A09D-41DF-B700-16281D2CBA2B}"
1414
EndProject
15+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{6C83A596-D32D-B35F-00DD-F0C99B673980}"
16+
EndProject
1517
Global
1618
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1719
Debug|Any CPU = Debug|Any CPU
@@ -30,6 +32,9 @@ Global
3032
GlobalSection(SolutionProperties) = preSolution
3133
HideSolutionNode = FALSE
3234
EndGlobalSection
35+
GlobalSection(NestedProjects) = preSolution
36+
{2EEB3EA9-A09D-41DF-B700-16281D2CBA2B} = {6C83A596-D32D-B35F-00DD-F0C99B673980}
37+
EndGlobalSection
3338
GlobalSection(ExtensibilityGlobals) = postSolution
3439
SolutionGuid = {9BD29F4F-0728-467B-BD44-53B15DB15620}
3540
EndGlobalSection
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using MediatR;
54

65
namespace Modular.Monolithic.Architecture.Helper.Domain.Events.Domain;
76

8-
public interface IDomainEvent : IEvent, INotification
7+
public interface IDomainEvent : IEvent
98
{
109
}

src/Modular.Monolithic.Architecture.Helper.Domain/Events/IEvent.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using MediatR;
5-
64
namespace Modular.Monolithic.Architecture.Helper.Domain.Events;
75

86
public interface IEvent
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using MediatR;
5-
64
namespace Modular.Monolithic.Architecture.Helper.Domain.Events.Integration;
75

8-
public interface IIntegrationEvent : IEvent, INotification
6+
public interface IIntegrationEvent : IEvent
97
{
108
}
Lines changed: 30 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,44 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
8-
<LangVersion>latest</LangVersion>
9-
<PackageId>Niko_olas.ModularMonolith.Helper.Domain</PackageId>
10-
<Authors>Nicholas Gueli</Authors>
11-
<Company>Nicholas Gueli</Company>
12-
<Product>Library Modular Monolithic Architecture helper for domain layer</Product>
13-
<Title>Library Modular Monolithic Architecture helper for domain layer</Title>
14-
<Description>A small library to improve and simplify the development of applications based on the Modular Monolith architecture for domain layer</Description>
15-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16-
<PackageProjectUrl>https://github.com/niko-olas/Modular.Monolithic.Architecture.Helper</PackageProjectUrl>
17-
<PackageIcon>Toolbox.jpeg</PackageIcon>
18-
<PackageTags>csharp visualstudio aspnetcore utilities helper modular-monolithic</PackageTags>
19-
<RepositoryType>git</RepositoryType>
20-
<RepositoryUrl>https://github.com/niko-olas/Modular.Monolithic.Architecture.Helper.git</RepositoryUrl>
21-
<RepositoryBranch>master</RepositoryBranch>
22-
<PackageReadmeFile>README.md</PackageReadmeFile>
23-
<AnalysisLevel>latest</AnalysisLevel>
24-
<AnalysisMode>All</AnalysisMode>
25-
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
4+
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
8+
<LangVersion>latest</LangVersion>
9+
<PackageId>Niko_olas.ModularMonolith.Helper.Domain</PackageId>
10+
<Authors>Nicholas Gueli</Authors>
11+
<Company>Nicholas Gueli</Company>
12+
<Product>Library Modular Monolithic Architecture helper for domain layer</Product>
13+
<Title>Library Modular Monolithic Architecture helper for domain layer</Title>
14+
<Description>A small library to improve and simplify the development of applications based on the Modular Monolith architecture for domain layer</Description>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16+
<PackageProjectUrl>https://github.com/niko-olas/Modular.Monolithic.Architecture.Helper</PackageProjectUrl>
17+
<PackageIcon>Toolbox.jpeg</PackageIcon>
18+
<PackageTags>csharp visualstudio aspnetcore utilities helper modular-monolithic</PackageTags>
19+
<RepositoryType>git</RepositoryType>
20+
<RepositoryUrl>https://github.com/niko-olas/Modular.Monolithic.Architecture.Helper.git</RepositoryUrl>
21+
<RepositoryBranch>master</RepositoryBranch>
22+
<PackageReadmeFile>README.md</PackageReadmeFile>
23+
<AnalysisLevel>latest</AnalysisLevel>
24+
<AnalysisMode>All</AnalysisMode>
25+
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
2626
</PropertyGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="MediatR.Contracts" Version="2.0.1" />
3029
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133">
3130
<PrivateAssets>all</PrivateAssets>
3231
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3332
</PackageReference>
3433
</ItemGroup>
3534

36-
<ItemGroup>
37-
<None Include="..\..\Toolbox.jpeg">
38-
<Pack>True</Pack>
39-
<PackagePath></PackagePath>
40-
</None>
41-
<None Include="README.md" Pack="true" PackagePath="\" />
42-
</ItemGroup>
35+
<ItemGroup>
36+
<None Include="..\..\Toolbox.jpeg">
37+
<Pack>True</Pack>
38+
<PackagePath></PackagePath>
39+
</None>
40+
<None Include="README.md" Pack="true" PackagePath="\" />
41+
</ItemGroup>
42+
4343

44-
4544
</Project>

0 commit comments

Comments
 (0)