diff --git a/src/MediatR/DI.cs b/DI.cs
similarity index 100%
rename from src/MediatR/DI.cs
rename to DI.cs
diff --git a/Dgmjr.MediatR.csproj b/Dgmjr.MediatR.csproj
new file mode 100644
index 0000000..f6cfa85
--- /dev/null
+++ b/Dgmjr.MediatR.csproj
@@ -0,0 +1,32 @@
+
+
+
+
+ netstandard2.1
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MediatR.csproj b/MediatR.csproj
deleted file mode 100644
index cb16fc3..0000000
--- a/MediatR.csproj
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
- netstandard2.1
- true
-
-
-
-
-
-
diff --git a/src/Abstractions/Dgmjr.MediatR.Abstractions.sln b/src/Abstractions/Dgmjr.MediatR.Abstractions.sln
deleted file mode 100644
index 3714742..0000000
--- a/src/Abstractions/Dgmjr.MediatR.Abstractions.sln
+++ /dev/null
@@ -1,13 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {4DEC52D8-6A15-44CC-BFEC-720D260622F8}
- EndGlobalSection
-EndGlobal
diff --git a/src/Abstractions/Dgmjr.MediatR.Abstractions.csproj b/src/Commands.Abstractions/Dgmjr.MediatR.Commands.Abstractions.csproj
similarity index 80%
rename from src/Abstractions/Dgmjr.MediatR.Abstractions.csproj
rename to src/Commands.Abstractions/Dgmjr.MediatR.Commands.Abstractions.csproj
index 5c57827..849fdf4 100644
--- a/src/Abstractions/Dgmjr.MediatR.Abstractions.csproj
+++ b/src/Commands.Abstractions/Dgmjr.MediatR.Commands.Abstractions.csproj
@@ -1,11 +1,11 @@
@@ -18,4 +18,7 @@
+
+
+
diff --git a/src/Commands.Abstractions/Dgmjr.MediatR.Commands.Abstractions.props b/src/Commands.Abstractions/Dgmjr.MediatR.Commands.Abstractions.props
new file mode 100644
index 0000000..cd56913
--- /dev/null
+++ b/src/Commands.Abstractions/Dgmjr.MediatR.Commands.Abstractions.props
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/src/Commands.Abstractions/Dgmjr.MediatR.Commands.props b/src/Commands.Abstractions/Dgmjr.MediatR.Commands.props
new file mode 100644
index 0000000..40756af
--- /dev/null
+++ b/src/Commands.Abstractions/Dgmjr.MediatR.Commands.props
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/src/Abstractions/ICommand.cs b/src/Commands.Abstractions/ICommand.cs
similarity index 84%
rename from src/Abstractions/ICommand.cs
rename to src/Commands.Abstractions/ICommand.cs
index e0e36e0..35b1f49 100644
--- a/src/Abstractions/ICommand.cs
+++ b/src/Commands.Abstractions/ICommand.cs
@@ -9,6 +9,6 @@
* Copyright © 2022-2023 David G. Moore, Jr., All Rights Reserved
* License: MIT (https://opensource.org/licenses/MIT)
*/
-namespace Dgmjr.MediatR.Abstractions;
+namespace Dgmjr.MediatR.Commands.Abstractions;
public interface ICommand : IRequest { }
diff --git a/src/Abstractions/ICreate.cs b/src/Commands.Abstractions/ICreate.cs
similarity index 87%
rename from src/Abstractions/ICreate.cs
rename to src/Commands.Abstractions/ICreate.cs
index 58c6855..203a4db 100644
--- a/src/Abstractions/ICreate.cs
+++ b/src/Commands.Abstractions/ICreate.cs
@@ -12,7 +12,7 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-namespace Dgmjr.MediatR.Abstractions;
+namespace Dgmjr.MediatR.Commands.Abstractions;
public interface ICreateCommand : ICommand
where TId : IComparable, IEquatable { }
diff --git a/src/Abstractions/IDelete.cs b/src/Commands.Abstractions/IDelete.cs
similarity index 88%
rename from src/Abstractions/IDelete.cs
rename to src/Commands.Abstractions/IDelete.cs
index f764ff9..4e51faf 100644
--- a/src/Abstractions/IDelete.cs
+++ b/src/Commands.Abstractions/IDelete.cs
@@ -10,7 +10,7 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-namespace Dgmjr.MediatR.Abstractions;
+namespace Dgmjr.MediatR.Commands.Abstractions;
public interface IDeleteCommand : IDeleteCommand
where TId : IComparable, IEquatable { }
diff --git a/src/Abstractions/IPatch.cs b/src/Commands.Abstractions/IPatch.cs
similarity index 86%
rename from src/Abstractions/IPatch.cs
rename to src/Commands.Abstractions/IPatch.cs
index 6bc0165..04d4c8d 100644
--- a/src/Abstractions/IPatch.cs
+++ b/src/Commands.Abstractions/IPatch.cs
@@ -10,7 +10,7 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-namespace Dgmjr.MediatR.Abstractions;
+namespace Dgmjr.MediatR.Commands.Abstractions;
public interface IPatchCommand : ICommand
where TId : IComparable, IEquatable { }
diff --git a/src/Abstractions/IUpdate.cs b/src/Commands.Abstractions/IUpdate.cs
similarity index 88%
rename from src/Abstractions/IUpdate.cs
rename to src/Commands.Abstractions/IUpdate.cs
index 247d151..bf7f053 100644
--- a/src/Abstractions/IUpdate.cs
+++ b/src/Commands.Abstractions/IUpdate.cs
@@ -10,7 +10,7 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-namespace Dgmjr.MediatR.Abstractions;
+namespace Dgmjr.MediatR.Commands.Abstractions;
using Dgmjr.Abstractions;
diff --git a/src/MediatR/Commands/Create.cs b/src/Commands/CreateCommand.cs
similarity index 100%
rename from src/MediatR/Commands/Create.cs
rename to src/Commands/CreateCommand.cs
diff --git a/src/MediatR/Commands/Delete.cs b/src/Commands/DeleteCommand.cs
similarity index 100%
rename from src/MediatR/Commands/Delete.cs
rename to src/Commands/DeleteCommand.cs
diff --git a/src/Commands/Dgmjr.MediatR.Commands.csproj b/src/Commands/Dgmjr.MediatR.Commands.csproj
index 6eca51d..f4dea1c 100644
--- a/src/Commands/Dgmjr.MediatR.Commands.csproj
+++ b/src/Commands/Dgmjr.MediatR.Commands.csproj
@@ -1,11 +1,25 @@
+
+
+ netstandard2.1
+ This package contains the MediatR command record structs.
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Commands/Dgmjr.MediatR.Commands.props b/src/Commands/Dgmjr.MediatR.Commands.props
new file mode 100644
index 0000000..40756af
--- /dev/null
+++ b/src/Commands/Dgmjr.MediatR.Commands.props
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
diff --git a/src/Commands/Dgmjr.MediatR.Commands.sln b/src/Commands/Dgmjr.MediatR.Commands.sln
new file mode 100644
index 0000000..197e17f
--- /dev/null
+++ b/src/Commands/Dgmjr.MediatR.Commands.sln
@@ -0,0 +1,70 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B283EBC2-E01F-412D-9339-FD56EF114549}"
+ ProjectSection(SolutionItems) = preProject
+ ..\..\..\..\Packages\Versions.props = ..\..\..\..\Packages\Versions.props
+ ..\..\..\..\Packages\Versions.Local.json = ..\..\..\..\Packages\Versions.Local.json
+ ..\..\..\..\Packages\Versions.Local.props = ..\..\..\..\Packages\Versions.Local.props
+ ..\..\..\..\Packages\Packages.pkgs = ..\..\..\..\Packages\Packages.pkgs
+ ..\..\..\..\Packages\Packages\AnyOf.pkgs = ..\..\..\..\Packages\Packages\AnyOf.pkgs
+ ..\..\..\..\Packages\Packages\APIVersioning.pkgs = ..\..\..\..\Packages\Packages\APIVersioning.pkgs
+ ..\..\..\..\Packages\Packages\AutoMapper.pkgs = ..\..\..\..\Packages\Packages\AutoMapper.pkgs
+ ..\..\..\..\Packages\Packages\Azure.pkgs = ..\..\..\..\Packages\Packages\Azure.pkgs
+ ..\..\..\..\Packages\Packages\AzureFunctions.pkgs = ..\..\..\..\Packages\Packages\AzureFunctions.pkgs
+ ..\..\..\..\Packages\Packages\DDD.pkgs = ..\..\..\..\Packages\Packages\DDD.pkgs
+ ..\..\..\..\Packages\Packages\GlobalBuild.pkgs = ..\..\..\..\Packages\Packages\GlobalBuild.pkgs
+ ..\..\..\..\Packages\Packages\Images.pkgs = ..\..\..\..\Packages\Packages\Images.pkgs
+ ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs = ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs
+ ..\..\..\..\Packages\Packages\MediatR.pkgs = ..\..\..\..\Packages\Packages\MediatR.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs = ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs
+ ..\..\..\..\Packages\Packages\Miscellany.pkgs = ..\..\..\..\Packages\Packages\Miscellany.pkgs
+ ..\..\..\..\Packages\Packages\MSBuild.pkgs = ..\..\..\..\Packages\Packages\MSBuild.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs = ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs = ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs
+ ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs = ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs
+ ..\..\..\..\Packages\Packages\NuGet.pkgs = ..\..\..\..\Packages\Packages\NuGet.pkgs
+ ..\..\..\..\Packages\Packages\Powershell.pkgs = ..\..\..\..\Packages\Packages\Powershell.pkgs
+ ..\..\..\..\Packages\Packages\Roslyn.pkgs = ..\..\..\..\Packages\Packages\Roslyn.pkgs
+ ..\..\..\..\Packages\Packages\Serilog.pkgs = ..\..\..\..\Packages\Packages\Serilog.pkgs
+ ..\..\..\..\Packages\Packages\SlnGen.pkgs = ..\..\..\..\Packages\Packages\SlnGen.pkgs
+ ..\..\..\..\Packages\Packages\Swashbuckle.pkgs = ..\..\..\..\Packages\Packages\Swashbuckle.pkgs
+ ..\..\..\..\Packages\Packages\System.pkgs = ..\..\..\..\Packages\Packages\System.pkgs
+ ..\..\..\..\Packages\Packages\Telegram.pkgs = ..\..\..\..\Packages\Packages\Telegram.pkgs
+ ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs = ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs
+ ..\..\..\..\Packages\Packages\Testing.pkgs = ..\..\..\..\Packages\Packages\Testing.pkgs
+ ..\..\..\..\Packages\Packages\ThisAssembly.pkgs = ..\..\..\..\Packages\Packages\ThisAssembly.pkgs
+ ..\..\..\..\Packages\Packages\Validation.pkgs = ..\..\..\..\Packages\Packages\Validation.pkgs
+ ..\..\..\..\Packages\Packages\XmlDocMd.pkgs = ..\..\..\..\Packages\Packages\XmlDocMd.pkgs
+ ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props = ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props
+ ..\..\..\..\Packages\Versions\AutoMapper.props = ..\..\..\..\Packages\Versions\AutoMapper.props
+ ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props = ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props
+ ..\..\..\..\Packages\Versions\EFCore.props = ..\..\..\..\Packages\Versions\EFCore.props
+ ..\..\..\..\Packages\Versions\JsonPatch.props = ..\..\..\..\Packages\Versions\JsonPatch.props
+ ..\..\..\..\Packages\Versions\MediatR.props = ..\..\..\..\Packages\Versions\MediatR.props
+ ..\..\..\..\Packages\Versions\Microsoft.Build.props = ..\..\..\..\Packages\Versions\Microsoft.Build.props
+ ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props = ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props
+ ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props = ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props
+ ..\..\..\..\Packages\Versions\PowerShell.props = ..\..\..\..\Packages\Versions\PowerShell.props
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Local|Any CPU = Local|Any CPU
+ Debug|Any CPU = Debug|Any CPU
+ Testing|Any CPU = Testing|Any CPU
+ Staging|Any CPU = Staging|Any CPU
+ Production|Any CPU = Production|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {D959D175-1D41-42BC-9D6E-46007DECFA1D}
+ EndGlobalSection
+EndGlobal
diff --git a/src/MediatR/Commands/Patch.cs b/src/Commands/PatchCommand.cs
similarity index 100%
rename from src/MediatR/Commands/Patch.cs
rename to src/Commands/PatchCommand.cs
diff --git a/src/MediatR/Commands/Update.cs b/src/Commands/UpdateCommand.cs
similarity index 92%
rename from src/MediatR/Commands/Update.cs
rename to src/Commands/UpdateCommand.cs
index 21a04bd..07affb4 100644
--- a/src/MediatR/Commands/Update.cs
+++ b/src/Commands/UpdateCommand.cs
@@ -12,6 +12,8 @@
namespace Dgmjr.MediatR.Commands;
+using Dgmjr.Abstractions;
+
public record struct UpdateCommand(TUpdateDto Update)
: IUpdateCommand
where TModel : class, IIdentifiable
diff --git a/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.csproj b/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.csproj
new file mode 100644
index 0000000..bdbb17c
--- /dev/null
+++ b/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.csproj
@@ -0,0 +1,26 @@
+
+
+
+
+ netstandard2.1
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.props b/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.props
new file mode 100644
index 0000000..1ea82a2
--- /dev/null
+++ b/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.props
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.sln b/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.sln
new file mode 100644
index 0000000..ba60619
--- /dev/null
+++ b/src/Handlers.Abstractions/Dgmjr.MediatR.Handlers.Abstractions.sln
@@ -0,0 +1,70 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B283EBC2-E01F-412D-9339-FD56EF114549}"
+ ProjectSection(SolutionItems) = preProject
+ ..\..\..\..\Packages\Versions.props = ..\..\..\..\Packages\Versions.props
+ ..\..\..\..\Packages\Versions.Local.json = ..\..\..\..\Packages\Versions.Local.json
+ ..\..\..\..\Packages\Versions.Local.props = ..\..\..\..\Packages\Versions.Local.props
+ ..\..\..\..\Packages\Packages.pkgs = ..\..\..\..\Packages\Packages.pkgs
+ ..\..\..\..\Packages\Packages\AnyOf.pkgs = ..\..\..\..\Packages\Packages\AnyOf.pkgs
+ ..\..\..\..\Packages\Packages\APIVersioning.pkgs = ..\..\..\..\Packages\Packages\APIVersioning.pkgs
+ ..\..\..\..\Packages\Packages\AutoMapper.pkgs = ..\..\..\..\Packages\Packages\AutoMapper.pkgs
+ ..\..\..\..\Packages\Packages\Azure.pkgs = ..\..\..\..\Packages\Packages\Azure.pkgs
+ ..\..\..\..\Packages\Packages\AzureFunctions.pkgs = ..\..\..\..\Packages\Packages\AzureFunctions.pkgs
+ ..\..\..\..\Packages\Packages\DDD.pkgs = ..\..\..\..\Packages\Packages\DDD.pkgs
+ ..\..\..\..\Packages\Packages\GlobalBuild.pkgs = ..\..\..\..\Packages\Packages\GlobalBuild.pkgs
+ ..\..\..\..\Packages\Packages\Images.pkgs = ..\..\..\..\Packages\Packages\Images.pkgs
+ ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs = ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs
+ ..\..\..\..\Packages\Packages\MediatR.pkgs = ..\..\..\..\Packages\Packages\MediatR.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs = ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs
+ ..\..\..\..\Packages\Packages\Miscellany.pkgs = ..\..\..\..\Packages\Packages\Miscellany.pkgs
+ ..\..\..\..\Packages\Packages\MSBuild.pkgs = ..\..\..\..\Packages\Packages\MSBuild.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs = ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs = ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs
+ ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs = ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs
+ ..\..\..\..\Packages\Packages\NuGet.pkgs = ..\..\..\..\Packages\Packages\NuGet.pkgs
+ ..\..\..\..\Packages\Packages\Powershell.pkgs = ..\..\..\..\Packages\Packages\Powershell.pkgs
+ ..\..\..\..\Packages\Packages\Roslyn.pkgs = ..\..\..\..\Packages\Packages\Roslyn.pkgs
+ ..\..\..\..\Packages\Packages\Serilog.pkgs = ..\..\..\..\Packages\Packages\Serilog.pkgs
+ ..\..\..\..\Packages\Packages\SlnGen.pkgs = ..\..\..\..\Packages\Packages\SlnGen.pkgs
+ ..\..\..\..\Packages\Packages\Swashbuckle.pkgs = ..\..\..\..\Packages\Packages\Swashbuckle.pkgs
+ ..\..\..\..\Packages\Packages\System.pkgs = ..\..\..\..\Packages\Packages\System.pkgs
+ ..\..\..\..\Packages\Packages\Telegram.pkgs = ..\..\..\..\Packages\Packages\Telegram.pkgs
+ ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs = ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs
+ ..\..\..\..\Packages\Packages\Testing.pkgs = ..\..\..\..\Packages\Packages\Testing.pkgs
+ ..\..\..\..\Packages\Packages\ThisAssembly.pkgs = ..\..\..\..\Packages\Packages\ThisAssembly.pkgs
+ ..\..\..\..\Packages\Packages\Validation.pkgs = ..\..\..\..\Packages\Packages\Validation.pkgs
+ ..\..\..\..\Packages\Packages\XmlDocMd.pkgs = ..\..\..\..\Packages\Packages\XmlDocMd.pkgs
+ ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props = ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props
+ ..\..\..\..\Packages\Versions\AutoMapper.props = ..\..\..\..\Packages\Versions\AutoMapper.props
+ ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props = ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props
+ ..\..\..\..\Packages\Versions\EFCore.props = ..\..\..\..\Packages\Versions\EFCore.props
+ ..\..\..\..\Packages\Versions\JsonPatch.props = ..\..\..\..\Packages\Versions\JsonPatch.props
+ ..\..\..\..\Packages\Versions\MediatR.props = ..\..\..\..\Packages\Versions\MediatR.props
+ ..\..\..\..\Packages\Versions\Microsoft.Build.props = ..\..\..\..\Packages\Versions\Microsoft.Build.props
+ ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props = ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props
+ ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props = ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props
+ ..\..\..\..\Packages\Versions\PowerShell.props = ..\..\..\..\Packages\Versions\PowerShell.props
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Local|Any CPU = Local|Any CPU
+ Debug|Any CPU = Debug|Any CPU
+ Testing|Any CPU = Testing|Any CPU
+ Staging|Any CPU = Staging|Any CPU
+ Production|Any CPU = Production|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {02F36C33-7D05-4EB8-88F4-40862804B51F}
+ EndGlobalSection
+EndGlobal
diff --git a/src/Abstractions/ICreateHandler.cs b/src/Handlers.Abstractions/ICreateHandler.cs
similarity index 91%
rename from src/Abstractions/ICreateHandler.cs
rename to src/Handlers.Abstractions/ICreateHandler.cs
index 0dd33e1..7d8ab4d 100644
--- a/src/Abstractions/ICreateHandler.cs
+++ b/src/Handlers.Abstractions/ICreateHandler.cs
@@ -11,7 +11,6 @@
*/
using System.Reflection;
-using Dgmjr.MediatR.Abstractions;
namespace Dgmjr.MediatR.Handlers.Abstractions;
diff --git a/src/Abstractions/IDeleteHandler.cs b/src/Handlers.Abstractions/IDeleteHandler.cs
similarity index 92%
rename from src/Abstractions/IDeleteHandler.cs
rename to src/Handlers.Abstractions/IDeleteHandler.cs
index 272d8b7..1452d5f 100644
--- a/src/Abstractions/IDeleteHandler.cs
+++ b/src/Handlers.Abstractions/IDeleteHandler.cs
@@ -10,8 +10,6 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-using Dgmjr.MediatR.Abstractions;
-
namespace Dgmjr.MediatR.Handlers.Abstractions;
public interface IDeleteHandler : IDeleteHandler
diff --git a/src/Abstractions/IPatchHandler.cs b/src/Handlers.Abstractions/IPatchHandler.cs
similarity index 90%
rename from src/Abstractions/IPatchHandler.cs
rename to src/Handlers.Abstractions/IPatchHandler.cs
index 4d60782..7d0c989 100644
--- a/src/Abstractions/IPatchHandler.cs
+++ b/src/Handlers.Abstractions/IPatchHandler.cs
@@ -10,8 +10,6 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-using Dgmjr.MediatR.Abstractions;
-
namespace Dgmjr.MediatR.Handlers.Abstractions;
public interface IPatchHandler
diff --git a/src/Abstractions/IQueryHandler.cs b/src/Handlers.Abstractions/IQueryHandler.cs
similarity index 89%
rename from src/Abstractions/IQueryHandler.cs
rename to src/Handlers.Abstractions/IQueryHandler.cs
index e3b41b8..fb116b9 100644
--- a/src/Abstractions/IQueryHandler.cs
+++ b/src/Handlers.Abstractions/IQueryHandler.cs
@@ -10,9 +10,6 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-using Dgmjr.Abstractions;
-using Dgmjr.MediatR.Abstractions;
-
namespace Dgmjr.MediatR.Handlers.Abstractions;
public interface IQueryHandler : IRequestHandler
diff --git a/src/Abstractions/IUpdateHandler.cs b/src/Handlers.Abstractions/IUpdateHandler.cs
similarity index 88%
rename from src/Abstractions/IUpdateHandler.cs
rename to src/Handlers.Abstractions/IUpdateHandler.cs
index 9c4c274..8816a13 100644
--- a/src/Abstractions/IUpdateHandler.cs
+++ b/src/Handlers.Abstractions/IUpdateHandler.cs
@@ -10,9 +10,6 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-using Dgmjr.Abstractions;
-using Dgmjr.MediatR.Abstractions;
-
namespace Dgmjr.MediatR.Handlers.Abstractions;
public interface IUpdateHandler
diff --git a/src/MediatR/Handlers/CreateHandler.cs b/src/Handlers/CreateHandler.cs
similarity index 100%
rename from src/MediatR/Handlers/CreateHandler.cs
rename to src/Handlers/CreateHandler.cs
diff --git a/src/MediatR/Handlers/Handler.cs b/src/Handlers/CrudHandler.cs
similarity index 100%
rename from src/MediatR/Handlers/Handler.cs
rename to src/Handlers/CrudHandler.cs
diff --git a/src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.csproj b/src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.csproj
new file mode 100644
index 0000000..d99dbbc
--- /dev/null
+++ b/src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.csproj
@@ -0,0 +1,31 @@
+
+
+
+
+ netstandard2.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/MediatR/Dgmjr.MediatR.props b/src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.props
similarity index 53%
rename from src/MediatR/Dgmjr.MediatR.props
rename to src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.props
index d7eb1d1..5871a95 100644
--- a/src/MediatR/Dgmjr.MediatR.props
+++ b/src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.props
@@ -1,11 +1,11 @@
@@ -15,12 +15,10 @@
-
-
-
-
+
+
+
-
diff --git a/src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.sln b/src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.sln
new file mode 100644
index 0000000..6b1e504
--- /dev/null
+++ b/src/Handlers/Dgmjr.MediatR.Handlers.Abstractions.sln
@@ -0,0 +1,70 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B283EBC2-E01F-412D-9339-FD56EF114549}"
+ ProjectSection(SolutionItems) = preProject
+ ..\..\..\..\Packages\Versions.props = ..\..\..\..\Packages\Versions.props
+ ..\..\..\..\Packages\Versions.Local.json = ..\..\..\..\Packages\Versions.Local.json
+ ..\..\..\..\Packages\Versions.Local.props = ..\..\..\..\Packages\Versions.Local.props
+ ..\..\..\..\Packages\Packages.pkgs = ..\..\..\..\Packages\Packages.pkgs
+ ..\..\..\..\Packages\Packages\AnyOf.pkgs = ..\..\..\..\Packages\Packages\AnyOf.pkgs
+ ..\..\..\..\Packages\Packages\APIVersioning.pkgs = ..\..\..\..\Packages\Packages\APIVersioning.pkgs
+ ..\..\..\..\Packages\Packages\AutoMapper.pkgs = ..\..\..\..\Packages\Packages\AutoMapper.pkgs
+ ..\..\..\..\Packages\Packages\Azure.pkgs = ..\..\..\..\Packages\Packages\Azure.pkgs
+ ..\..\..\..\Packages\Packages\AzureFunctions.pkgs = ..\..\..\..\Packages\Packages\AzureFunctions.pkgs
+ ..\..\..\..\Packages\Packages\DDD.pkgs = ..\..\..\..\Packages\Packages\DDD.pkgs
+ ..\..\..\..\Packages\Packages\GlobalBuild.pkgs = ..\..\..\..\Packages\Packages\GlobalBuild.pkgs
+ ..\..\..\..\Packages\Packages\Images.pkgs = ..\..\..\..\Packages\Packages\Images.pkgs
+ ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs = ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs
+ ..\..\..\..\Packages\Packages\MediatR.pkgs = ..\..\..\..\Packages\Packages\MediatR.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs = ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs
+ ..\..\..\..\Packages\Packages\Miscellany.pkgs = ..\..\..\..\Packages\Packages\Miscellany.pkgs
+ ..\..\..\..\Packages\Packages\MSBuild.pkgs = ..\..\..\..\Packages\Packages\MSBuild.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs = ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs = ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs
+ ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs = ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs
+ ..\..\..\..\Packages\Packages\NuGet.pkgs = ..\..\..\..\Packages\Packages\NuGet.pkgs
+ ..\..\..\..\Packages\Packages\Powershell.pkgs = ..\..\..\..\Packages\Packages\Powershell.pkgs
+ ..\..\..\..\Packages\Packages\Roslyn.pkgs = ..\..\..\..\Packages\Packages\Roslyn.pkgs
+ ..\..\..\..\Packages\Packages\Serilog.pkgs = ..\..\..\..\Packages\Packages\Serilog.pkgs
+ ..\..\..\..\Packages\Packages\SlnGen.pkgs = ..\..\..\..\Packages\Packages\SlnGen.pkgs
+ ..\..\..\..\Packages\Packages\Swashbuckle.pkgs = ..\..\..\..\Packages\Packages\Swashbuckle.pkgs
+ ..\..\..\..\Packages\Packages\System.pkgs = ..\..\..\..\Packages\Packages\System.pkgs
+ ..\..\..\..\Packages\Packages\Telegram.pkgs = ..\..\..\..\Packages\Packages\Telegram.pkgs
+ ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs = ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs
+ ..\..\..\..\Packages\Packages\Testing.pkgs = ..\..\..\..\Packages\Packages\Testing.pkgs
+ ..\..\..\..\Packages\Packages\ThisAssembly.pkgs = ..\..\..\..\Packages\Packages\ThisAssembly.pkgs
+ ..\..\..\..\Packages\Packages\Validation.pkgs = ..\..\..\..\Packages\Packages\Validation.pkgs
+ ..\..\..\..\Packages\Packages\XmlDocMd.pkgs = ..\..\..\..\Packages\Packages\XmlDocMd.pkgs
+ ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props = ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props
+ ..\..\..\..\Packages\Versions\AutoMapper.props = ..\..\..\..\Packages\Versions\AutoMapper.props
+ ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props = ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props
+ ..\..\..\..\Packages\Versions\EFCore.props = ..\..\..\..\Packages\Versions\EFCore.props
+ ..\..\..\..\Packages\Versions\JsonPatch.props = ..\..\..\..\Packages\Versions\JsonPatch.props
+ ..\..\..\..\Packages\Versions\MediatR.props = ..\..\..\..\Packages\Versions\MediatR.props
+ ..\..\..\..\Packages\Versions\Microsoft.Build.props = ..\..\..\..\Packages\Versions\Microsoft.Build.props
+ ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props = ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props
+ ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props = ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props
+ ..\..\..\..\Packages\Versions\PowerShell.props = ..\..\..\..\Packages\Versions\PowerShell.props
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Local|Any CPU = Local|Any CPU
+ Debug|Any CPU = Debug|Any CPU
+ Testing|Any CPU = Testing|Any CPU
+ Staging|Any CPU = Staging|Any CPU
+ Production|Any CPU = Production|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {9FD1E89C-E51D-48C0-849E-67079C397159}
+ EndGlobalSection
+EndGlobal
diff --git a/src/MediatR/Handlers/NotificationsLogger.cs b/src/Handlers/NotificationsLogger.cs
similarity index 100%
rename from src/MediatR/Handlers/NotificationsLogger.cs
rename to src/Handlers/NotificationsLogger.cs
diff --git a/src/MediatR/Handlers/UpdateHandler.cs b/src/Handlers/UpdateHandler.cs
similarity index 100%
rename from src/MediatR/Handlers/UpdateHandler.cs
rename to src/Handlers/UpdateHandler.cs
diff --git a/src/MediatR/.gitignore b/src/MediatR/.gitignore
deleted file mode 100755
index e6abbdf..0000000
--- a/src/MediatR/.gitignore
+++ /dev/null
@@ -1,1156 +0,0 @@
-# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
-# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,visualstudio,visualbasic,test,ssh,spreadsheet,serverless,osx,microsoftoffice,macos,linux,executable,dotnetcore,dotfilessh,diskimage,datarecovery,database,data,csharp,compressedarchive,compressed,certificates,archive,archives,azurefunctions,diff,dotenv,dotsettings,git,gitbook,text,textpattern
-# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,visualstudio,visualbasic,test,ssh,spreadsheet,serverless,osx,microsoftoffice,macos,linux,executable,dotnetcore,dotfilessh,diskimage,datarecovery,database,data,csharp,compressedarchive,compressed,certificates,archive,archives,azurefunctions,diff,dotenv,dotsettings,git,gitbook,text,textpattern
-
-### Archive ###
-
-### Mostly from https://en.wikipedia.org/wiki/List_of_archive_formats
-
-## Archiving only
-# The traditional archive format on Unix-like systems, now used mainly for the creation of static libraries.
-*.a
-*.ar
-# RPM files consist of metadata concatenated with (usually) a cpio archive. Newer RPM systems also support other archives, as cpio is becoming obsolete. cpio is also used with initramfs.
-*.cpio
-
-# A self-extracting archive that uses the Bourne shell (sh).
-*.shar
-# A system for storing multiple files. LBR archives typically contained files processed by SQ, or the archive itself was compressed with SQ. LBR archives that were compressed with SQ ended with the extension .LQR
-*.LBR
-# An archive format originally used mainly for archiving and distribution of the exact, nearly-exact, or custom-modified contents of an optical storage medium such as a CD-ROM or DVD-ROM. However, it can be used to archive the contents of other storage media, selected partitions, folders, and/or files. The resulting archive is typically optimized for convenient rendering to (re-)writable CD or DVD media.
-*.iso
-# A library format used primarily on the Commodore 64 and 128 lines of computers. This bears no resemblance to the DOS LBR format. While library files were quick to implement (a number of programs exist to work with them) they are crippled in that they cannot grow with use: once a file has been created it cannot be amended (files added, changed or deleted) without recreating the entire file.
-*.lbr
-# An archive format used by Mozilla for storing binary diffs. Used in conjunction with bzip2.
-*.mar
-# A Shared archive format used on Unix-like systems. Generally used in conjunction with compressors such as gzip, bzip2, compress or xz to create .tar.gz, .tar.bz2, .tar.Z or tar.xz files.
-*.tar
-
-# Package managers
-# Red Hat Package Manager
-*.rpm
-# Debian package
-*.deb
-# MicroSoft Installer
-*.msi
-*.msm
-*.msp
-# Mozilla package installer
-*.xpi
-# Ruby Package
-*.gem
-
-
-### Archives ###
-# It's better to unpack these files and commit the raw source because
-# git has its own built in compression methods.
-*.7z
-*.jar
-*.rar
-*.zip
-*.gz
-*.gzip
-*.tgz
-*.bzip
-*.bzip2
-*.bz2
-*.xz
-*.lzma
-*.cab
-*.xar
-
-# Packing-only formats
-
-# Package management formats
-*.dmg
-*.egg
-*.txz
-
-### AzureFunctions ###
-# Azure Functions localsettings file
-local.settings.json
-
-### certificates ###
-*.pem
-*.key
-*.crt
-*.cer
-*.der
-*.priv
-
-### Compressed ###
-*.pkg
-*.sit
-*.sitx
-*.zipx
-
-### CompressedArchive ###
-
-
-## Archiving and compression
-# Open source file format. Used by 7-Zip.
-# Mac OS X, restoration on different platforms is possible although not immediate Yes Based on 7z. Preserves Spotlight metadata, resource forks, owner/group information, dates and other data which would be otherwise lost with compression.
-*.s7z
-# Old archive versions only Proprietary format
-*.ace
-# A format that compresses and doubly encrypt the data (AES256 and CAS256) avoiding brute force attacks, also hide files in an AFA file. It has two ways to safeguard data integrity and subsequent repair of the file if has an error (repair with AstroA2P (online) or Astrotite (offline)).
-*.afa
-# A mainly Korean format designed for very large archives.
-*.alz
-# Android application package (variant of JAR file format).
-*.apk
-# ??
-*.arc
-# Originally DOS, now multiple
-*.arj
-# Open archive format, used by B1 Free Archiver (http://dev.b1.org/standard/archive-format.html)
-*.b1
-# Binary Archive with external header
-*.ba
-# Proprietary format from the ZipTV Compression Components
-*.bh
-# The Microsoft Windows native archive format, which is also used by many commercial installers such as InstallShield and WISE.
-# Originally DOS, now DOS and Windows Created by Yaakov Gringeler; released last in 2003 (Compressia 1.0.0.1 beta), now apparently defunct. Free trial of 30 days lets user create and extract archives; after that it is possible to extract, but not to create.
-*.car
-# Open source file format.
-*.cfs
-# Compact Pro archive, a Shared archiver used on Mac platforms until about Mac OS 7.5.x. Competed with StuffIt; now obsolete.
-*.cpt
-# Windows, Unix-like, Mac OS X Open source file format. Files are compressed individually with either gzip, bzip2 or lzo.
-*.dar
-# DiskDoubler Mac OS obsolete
-*.dd
-# ??
-*.dgc
-# Apple Disk Image upports "Internet-enabled" disk images, which, once downloaded, are automatically decompressed, mounted, have the contents extracted, and thrown away. Currently, Safari is the only browser that supports this form of extraction; however, the images can be manually extracted as well. This format can also be password-protected or encrypted with 128-bit or 256-bit AES encryption.
-# Enterprise Java Archive archive
-*.ear
-# ETSoft compressed archive
-# The predecessor of DGCA.
-*.gca
-# Originally DOS Yes, but may be covered by patents DOS era format; uses arithmetic/Markov coding
-*.ha
-# MS Windows HKI
-*.hki
-# Produced by ICEOWS program. Excels at text file compression.
-*.ice
-# Java archive, compatible with ZIP files
-# Open sourced archiver with compression using the PAQ family of algorithms and optional encryption.
-*.kgb
-# Originally DOS, now multiple Multiple Yes The standard format on Amiga.
-*.lzh
-*.lha
-# Archiver originally used on The Amiga. Now copied by Microsoft to use in their .cab and .chm files.
-*.lzx
-# file format from NoGate Consultings, a rival from ARC-Compressor.
-*.pak
-# A disk image archive format that supports several compression methods as well as splitting the archive into smaller pieces.
-*.partimg
-# An experimental open source packager (http://mattmahoney.net/dc)
-*.paq*
-# Open source archiver supporting authenticated encryption, volume spanning, customizable object level and volume level integrity checks (form CRCs to SHA-512 and Whirlpool hashes), fast deflate based compression
-*.pea
-# The format from the PIM - a freeware compression tool by Ilia Muraviev. It uses an LZP-based compression algorithm with set of filters for executable, image and audio files.
-*.pim
-# PackIt Mac OS obsolete
-*.pit
-# Used for data in games written using the Quadruple D library for Delphi. Uses byte pair compression.
-*.qda
-# A proprietary archive format, second in popularity to .zip files.
-# The format from a commercial archiving package. Odd among commercial packages in that they focus on incorporating experimental algorithms with the highest possible compression (at the expense of speed and memory), such as PAQ, PPMD and PPMZ (PPMD with unlimited-length strings), as well as a proprietary algorithms.
-*.rk
-# Self Dissolving ARChive Commodore 64, Commodore 128 Commodore 64, Commodore 128 Yes SDAs refer to Self Dissolving ARC files, and are based on the Commodore 64 and Commodore 128 versions of ARC, originally written by Chris Smeets. While the files share the same extension, they are not compatible between platforms. That is, an SDA created on a Commodore 64 but run on a Commodore 128 in Commodore 128 mode will crash the machine, and vice versa. The intended successor to SDA is SFX.
-*.sda
-# A pre-Mac OS X Self-Extracting Archive format. StuffIt, Compact Pro, Disk Doubler and others could create .sea files, though the StuffIt versions were the most Shared.
-*.sea
-# Scifer Archive with internal header
-*.sen
-# Commodore 64, Commodore 128 SFX is a Self Extracting Archive which uses the LHArc compression algorithm. It was originally developed by Chris Smeets on the Commodore platform, and runs primarily using the CS-DOS extension for the Commodore 128. Unlike its predecessor SDA, SFX files will run on both the Commodore 64 and Commodore 128 regardless of which machine they were created on.
-*.sfx
-# An archive format designed for the Apple II series of computers. The canonical implementation is ShrinkIt, which can operate on disk images as well as files. Preferred compression algorithm is a combination of RLE and 12-bit LZW. Archives can be manipulated with the command-line NuLib tool, or the Windows-based CiderPress.
-*.shk
-# A compression format Shared on Apple Macintosh computers. The free StuffIt Expander is available for Windows and OS X.
-# The replacement for the .sit format that supports more compression methods, UNIX file permissions, long file names, very large files, more encryption options, data specific compressors (JPEG, Zip, PDF, 24-bit image, MP3). The free StuffIt Expander is available for Windows and OS X.
-# A royalty-free compressing format
-*.sqx
-# The "tarball" format combines tar archives with a file-based compression scheme (usually gzip). Sharedly used for source and binary distribution on Unix-like platforms, widely available elsewhere.
-*.tar.gz
-*.tar.Z
-*.tar.bz2
-*.tbz2
-*.tar.lzma
-*.tlz
-# UltraCompressor 2.3 was developed to act as an alternative to the then popular PKZIP application. The main feature of the application is its ability to create large archives. This means that compressed archives with the UC2 file extension can hold almost 1 million files.
-*.uc
-*.uc0
-*.uc2
-*.ucn
-*.ur2
-*.ue2
-# Based on PAQ, RZM, CSC, CCM, and 7zip. The format consists of a PAQ, RZM, CSC, or CCM compressed file and a manifest with compression settings stored in a 7z archive.
-*.uca
-# A high compression rate archive format originally for DOS.
-*.uha
-# Web Application archive (Java-based web app)
-*.war
-# File-based disk image format developed to deploy Microsoft Windows.
-*.wim
-# XAR
-# Native format of the Open Source KiriKiri Visual Novel engine. Uses combination of block splitting and zlib compression. The filenames and pathes are stored in UTF-16 format. For integrity check, the Adler-32 hashsum is used. For many commercial games, the files are encrypted (and decoded on runtime) via so-called "cxdec" module, which implements xor-based encryption.
-*.xp3
-# Yamazaki zipper archive. Compression format used in DeepFreezer archiver utility created by Yamazaki Satoshi. Read and write support exists in TUGZip, IZArc and ZipZag
-*.yz1
-# The most widely used compression format on Microsoft Windows. Sharedly used on Macintosh and Unix systems as well.
-# application/x-zoo zoo Multiple Multiple Yes
-*.zoo
-# Journaling (append-only) archive format with rollback capability. Supports deduplication and incremental update based on last-modified dates. Multi-threaded. Compresses in LZ77, BWT, and context mixing formats. Open source.
-*.zpaq
-# Archiver with a compression algorithm based on the Burrows-Wheeler transform method.
-*.zz
-
-
-### Csharp ###
-## Ignore Visual Studio temporary files, build results, and
-## files generated by popular Visual Studio add-ons.
-##
-## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
-
-# User-specific files
-*.rsuser
-*.suo
-*.user
-*.userosscache
-*.sln.docstates
-
-# User-specific files (MonoDevelop/Xamarin Studio)
-*.userprefs
-
-# Mono auto generated files
-mono_crash.*
-
-# Build results
-[Dd]ebug/
-[Dd]ebugPublic/
-[Rr]elease/
-[Rr]eleases/
-x64/
-x86/
-[Ww][Ii][Nn]32/
-[Aa][Rr][Mm]/
-[Aa][Rr][Mm]64/
-bld/
-[Bb]in/
-[Oo]bj/
-[Ll]og/
-[Ll]ogs/
-
-# Visual Studio 2015/2017 cache/options directory
-.vs/
-# Uncomment if you have tasks that create the project's static files in wwwroot
-#wwwroot/
-
-# Visual Studio 2017 auto generated files
-Generated\ Files/
-
-# MSTest test Results
-[Tt]est[Rr]esult*/
-[Bb]uild[Ll]og.*
-
-# NUnit
-*.VisualState.xml
-TestResult.xml
-nunit-*.xml
-
-# Build Results of an ATL Project
-[Dd]ebugPS/
-[Rr]eleasePS/
-dlldata.c
-
-# Benchmark Results
-BenchmarkDotNet.Artifacts/
-
-# .NET Core
-project.lock.json
-project.fragment.lock.json
-artifacts/
-
-# ASP.NET Scaffolding
-ScaffoldingReadMe.txt
-
-# StyleCop
-StyleCopReport.xml
-
-# Files built by Visual Studio
-*_i.c
-*_p.c
-*_h.h
-*.ilk
-*.meta
-*.obj
-*.iobj
-*.pch
-*.pdb
-*.ipdb
-*.pgc
-*.pgd
-*.rsp
-*.sbr
-*.tlb
-*.tli
-*.tlh
-*.tmp
-*.tmp_proj
-*_wpftmp.csproj
-*.log
-*.tlog
-*.vspscc
-*.vssscc
-.builds
-*.pidb
-*.svclog
-*.scc
-
-# Chutzpah Test files
-_Chutzpah*
-
-# Visual C++ cache files
-ipch/
-*.aps
-*.ncb
-*.opendb
-*.opensdf
-*.sdf
-*.cachefile
-*.VC.db
-*.VC.VC.opendb
-
-# Visual Studio profiler
-*.psess
-*.vsp
-*.vspx
-*.sap
-
-# Visual Studio Trace Files
-*.e2e
-
-# TFS 2012 Local Workspace
-$tf/
-
-# Guidance Automation Toolkit
-*.gpState
-
-# ReSharper is a .NET coding add-in
-_ReSharper*/
-*.[Rr]e[Ss]harper
-*.DotSettings.user
-
-# TeamCity is a build add-in
-_TeamCity*
-
-# DotCover is a Code Coverage Tool
-*.dotCover
-
-# AxoCover is a Code Coverage Tool
-.axoCover/*
-!.axoCover/settings.json
-
-# Coverlet is a free, cross platform Code Coverage Tool
-coverage*.json
-coverage*.xml
-coverage*.info
-
-# Visual Studio code coverage results
-*.coverage
-*.coveragexml
-
-# NCrunch
-_NCrunch_*
-.*crunch*.local.xml
-nCrunchTemp_*
-
-# MightyMoose
-*.mm.*
-AutoTest.Net/
-
-# Web workbench (sass)
-.sass-cache/
-
-# Installshield output folder
-[Ee]xpress/
-
-# DocProject is a documentation generator add-in
-DocProject/buildhelp/
-DocProject/Help/*.HxT
-DocProject/Help/*.HxC
-DocProject/Help/*.hhc
-DocProject/Help/*.hhk
-DocProject/Help/*.hhp
-DocProject/Help/Html2
-DocProject/Help/html
-
-# Click-Once directory
-publish/
-
-# Publish Web Output
-*.[Pp]ublish.xml
-*.azurePubxml
-# Note: Comment the next line if you want to checkin your web deploy settings,
-# but database connection strings (with potential passwords) will be unencrypted
-*.pubxml
-*.publishproj
-
-# Microsoft Azure Web App publish settings. Comment the next line if you want to
-# checkin your Azure Web App publish settings, but sensitive information contained
-# in these scripts will be unencrypted
-PublishScripts/
-
-# NuGet Packages
-*.nupkg
-# NuGet Symbol Packages
-*.snupkg
-# The packages folder can be ignored because of Package Restore
-**/[Pp]ackages/*
-# except build/, which is used as an MSBuild target.
-!**/[Pp]ackages/build/
-# Uncomment if necessary however generally it will be regenerated when needed
-#!**/[Pp]ackages/repositories.config
-# NuGet v3's project.json files produces more ignorable files
-*.nuget.props
-*.nuget.targets
-
-# Microsoft Azure Build Output
-csx/
-*.build.csdef
-
-# Microsoft Azure Emulator
-ecf/
-rcf/
-
-# Windows Store app package directories and files
-AppPackages/
-BundleArtifacts/
-Package.StoreAssociation.xml
-_pkginfo.txt
-*.appx
-*.appxbundle
-*.appxupload
-
-# Visual Studio cache files
-# files ending in .cache can be ignored
-*.[Cc]ache
-# but keep track of directories ending in .cache
-!?*.[Cc]ache/
-
-# Others
-ClientBin/
-~$*
-*~
-*.dbmdl
-*.dbproj.schemaview
-*.jfm
-*.pfx
-*.publishsettings
-orleans.codegen.cs
-
-# Including strong name files can present a security risk
-# (https://github.com/github/gitignore/pull/2483#issue-259490424)
-#*.snk
-
-# Since there are multiple workflows, uncomment next line to ignore bower_components
-# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
-#bower_components/
-
-# RIA/Silverlight projects
-Generated_Code/
-
-# Backup & report files from converting an old project file
-# to a newer Visual Studio version. Backup files are not needed,
-# because we have git ;-)
-_UpgradeReport_Files/
-Backup*/
-UpgradeLog*.XML
-UpgradeLog*.htm
-ServiceFabricBackup/
-*.rptproj.bak
-
-# SQL Server files
-*.mdf
-*.ldf
-*.ndf
-
-# Business Intelligence projects
-*.rdl.data
-*.bim.layout
-*.bim_*.settings
-*.rptproj.rsuser
-*- [Bb]ackup.rdl
-*- [Bb]ackup ([0-9]).rdl
-*- [Bb]ackup ([0-9][0-9]).rdl
-
-# Microsoft Fakes
-FakesAssemblies/
-
-# GhostDoc plugin setting file
-*.GhostDoc.xml
-
-# Node.js Tools for Visual Studio
-.ntvs_analysis.dat
-node_modules/
-
-# Visual Studio 6 build log
-*.plg
-
-# Visual Studio 6 workspace options file
-*.opt
-
-# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
-*.vbw
-
-# Visual Studio 6 auto-generated project file (contains which files were open etc.)
-*.vbp
-
-# Visual Studio 6 workspace and project file (working project files containing files to include in project)
-*.dsw
-*.dsp
-
-# Visual Studio 6 technical files
-
-# Visual Studio LightSwitch build output
-**/*.HTMLClient/GeneratedArtifacts
-**/*.DesktopClient/GeneratedArtifacts
-**/*.DesktopClient/ModelManifest.xml
-**/*.Server/GeneratedArtifacts
-**/*.Server/ModelManifest.xml
-_Pvt_Extensions
-
-# Paket dependency manager
-.paket/paket.exe
-paket-files/
-
-# FAKE - F# Make
-.fake/
-
-# CodeRush personal settings
-.cr/personal
-
-# Python Tools for Visual Studio (PTVS)
-__pycache__/
-*.pyc
-
-# Cake - Uncomment if you are using it
-# tools/**
-# !tools/packages.config
-
-# Tabs Studio
-*.tss
-
-# Telerik's JustMock configuration file
-*.jmconfig
-
-# BizTalk build output
-*.btp.cs
-*.btm.cs
-*.odx.cs
-*.xsd.cs
-
-# OpenCover UI analysis results
-OpenCover/
-
-# Azure Stream Analytics local run output
-ASALocalRun/
-
-# MSBuild Binary and Structured Log
-*.binlog
-
-# NVidia Nsight GPU debugger configuration file
-*.nvuser
-
-# MFractors (Xamarin productivity tool) working folder
-.mfractor/
-
-# Local History for Visual Studio
-.localhistory/
-
-# Visual Studio History (VSHistory) files
-.vshistory/
-
-# BeatPulse healthcheck temp database
-healthchecksdb
-
-# Backup folder for Package Reference Convert tool in Visual Studio 2017
-MigrationBackup/
-
-# Ionide (cross platform F# VS Code tools) working folder
-.ionide/
-
-# Fody - auto-generated XML schema
-FodyWeavers.xsd
-
-# VS Code files for those working on multiple tools
-.vscode/*
-!.vscode/settings.json
-!.vscode/tasks.json
-!.vscode/launch.json
-!.vscode/extensions.json
-*.code-workspace
-
-# Local History for Visual Studio Code
-.history/
-
-# Windows Installer files from build outputs
-*.msix
-
-# JetBrains Rider
-*.sln.iml
-
-### Data ###
-*.csv
-*.dat
-*.efx
-*.gbr
-*.pps
-*.ppt
-*.pptx
-*.tax2010
-*.vcf
-*.xml
-
-### Database ###
-*.accdb
-*.db
-*.dbf
-*.mdb
-*.sqlite3
-
-### DataRecovery ###
-
-### From https://en.wikipedia.org/wiki/List_of_archive_formats
-
-## Data recovery
-# File format used by dvdisaster to be used for data recovery when discs become damaged or partially unreadable.
-*.ecc
-# File format used in conjunction with any archive format to provide redundancy and data recovery, most often in newsgroup distribution of binary files.
-*.par
-*.par2
-
-
-### Diff ###
-*.patch
-*.diff
-
-### dotenv ###
-.env
-
-### DotfilesSh ###
-local-patch
-patched-src
-
-### DiskImage ###
-*.toast
-*.vcd
-
-### DotSettings ###
-*.DotSettings
-
-### Executable ###
-*.app
-*.bat
-*.cgi
-*.com
-*.exe
-*.gadget
-*.pif
-*.vb
-*.wsf
-
-### Git ###
-# Created by git for backups. To disable backups in Git:
-# $ git config --global mergetool.keepBackup false
-*.orig
-
-# Created by git when using merge tools for conflicts
-*.BACKUP.*
-*.BASE.*
-*.LOCAL.*
-*.REMOTE.*
-*_BACKUP_*.txt
-*_BASE_*.txt
-*_LOCAL_*.txt
-*_REMOTE_*.txt
-
-### GitBook ###
-# Node rules:
-## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
-.grunt
-
-## Dependency directory
-## Commenting this out is preferred by some people, see
-## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
-node_modules
-
-# Book build output
-_book
-
-# eBook build output
-*.epub
-*.mobi
-*.pdf
-
-### DotnetCore ###
-# .NET Core build folders
-bin/
-obj/
-
-# Shared node modules locations
-/node_modules
-/wwwroot/node_modules
-
-### macOS ###
-# General
-.DS_Store
-.AppleDouble
-.LSOverride
-
-# Icon must end with two \r
-Icon
-
-
-# Thumbnails
-._*
-
-# Files that might appear in the root of a volume
-.DocumentRevisions-V100
-.fseventsd
-.Spotlight-V100
-.TemporaryItems
-.Trashes
-.VolumeIcon.icns
-.com.apple.timemachine.donotpresent
-
-# Directories potentially created on remote AFP share
-.AppleDB
-.AppleDesktop
-Network Trash Folder
-Temporary Items
-.apdisk
-
-### macOS Patch ###
-# iCloud generated files
-*.icloud
-
-### MicrosoftOffice ###
-
-# Word temporary
-~$*.doc*
-
-# Word Auto Backup File
-Backup of *.doc*
-
-# Excel temporary
-~$*.xls*
-
-# Excel Backup File
-*.xlk
-
-# PowerPoint temporary
-~$*.ppt*
-
-# Visio autosave temporary files
-*.~vsd*
-
-### OSX ###
-# General
-
-# Icon must end with two \r
-
-# Thumbnails
-
-# Files that might appear in the root of a volume
-
-# Directories potentially created on remote AFP share
-
-### Serverless ###
-# Ignore build directory
-.serverless
-
-### Spreadsheet ###
-*.xlr
-*.xls
-*.xlsx
-
-### SSH ###
-**/.ssh/id_*
-**/.ssh/*_id_*
-**/.ssh/known_hosts
-
-### Test ###
-### Ignore all files that could be used to test your code and
-### you wouldn't want to push
-
-# Reference https://en.wikipedia.org/wiki/Metasyntactic_variable
-
-# Most Shared
-*foo
-*bar
-*fubar
-*foobar
-*baz
-
-# Less Shared
-*qux
-*quux
-*bongo
-*bazola
-*ztesch
-
-# UK, Australia
-*wibble
-*wobble
-*wubble
-*flob
-*blep
-*blah
-*boop
-*beep
-
-# Japanese
-*hoge
-*piyo
-*fuga
-*hogera
-*hogehoge
-
-# Portugal, Spain
-*fulano
-*sicrano
-*beltrano
-*mengano
-*perengano
-*zutano
-
-# France, Italy, the Netherlands
-*toto
-*titi
-*tata
-*tutu
-*pipppo
-*pluto
-*paperino
-*aap
-*noot
-*mies
-
-# Other names that would make sense
-*tests
-*testsdir
-*testsfile
-*testsfiles
-*test
-*testdir
-*testfile
-*testfiles
-*testing
-*testingdir
-*testingfile
-*testingfiles
-*temp
-*tempdir
-*tempfile
-*tempfiles
-*tmp
-*tmpdir
-*tmpfile
-*tmpfiles
-*lol
-
-### Text ###
-*.doc
-*.docx
-*.msg
-*.pages
-*.rtf
-*.txt
-*.wpd
-*.wps
-
-### Textpattern ###
-.htaccess
-css.php
-rpc/
-sites/site*/admin/
-sites/site*/private/
-sites/site*/public/admin/
-sites/site*/public/setup/
-sites/site*/public/theme/
-textpattern/
-HISTORY.txt
-README.txt
-
-### VisualBasic ###
-*.csi
-*.exp
-*.lib
-*.lvw
-*.dca
-*.bak
-*.old
-*.enc
-# Windows image file caches
-Thumbs.db
-ehthumbs.db
-
-# Folder config file
-Desktop.ini
-
-# Recycle Bin used on file shares
-$RECYCLE.BIN/
-
-# Windows Installer files
-
-# Windows shortcuts
-*.lnk
-
-# =========================
-# Operating System Files
-# =========================
-
-# OSX
-# =========================
-
-
-# Thumbnails
-
-# Files that might appear in the root of a volume
-
-# Directories potentially created on remote AFP share
-
-### Linux ###
-
-# temporary files which can be created if a process still has a handle open of a deleted file
-.fuse_hidden*
-
-# KDE directory preferences
-.directory
-
-# Linux trash folder which might appear on any partition or disk
-.Trash-*
-
-# .nfs files are created when an open file is removed but is still being accessed
-.nfs*
-
-### VisualStudioCode ###
-!.vscode/*.code-snippets
-
-# Local History for Visual Studio Code
-
-# Built Visual Studio Code Extensions
-*.vsix
-
-### VisualStudioCode Patch ###
-# Ignore all local history of files
-.history
-.ionide
-
-# Support for Project snippet scope
-.vscode/*.code-snippets
-
-# Ignore code-workspaces
-
-### VisualStudio ###
-
-# User-specific files
-
-# User-specific files (MonoDevelop/Xamarin Studio)
-
-# Mono auto generated files
-
-# Build results
-
-# Visual Studio 2015/2017 cache/options directory
-# Uncomment if you have tasks that create the project's static files in wwwroot
-
-# Visual Studio 2017 auto generated files
-
-# MSTest test Results
-
-# NUnit
-
-# Build Results of an ATL Project
-
-# Benchmark Results
-
-# .NET Core
-
-# ASP.NET Scaffolding
-
-# StyleCop
-
-# Files built by Visual Studio
-
-# Chutzpah Test files
-
-# Visual C++ cache files
-
-# Visual Studio profiler
-
-# Visual Studio Trace Files
-
-# TFS 2012 Local Workspace
-
-# Guidance Automation Toolkit
-
-# ReSharper is a .NET coding add-in
-
-# TeamCity is a build add-in
-
-# DotCover is a Code Coverage Tool
-
-# AxoCover is a Code Coverage Tool
-
-# Coverlet is a free, cross platform Code Coverage Tool
-
-# Visual Studio code coverage results
-
-# NCrunch
-
-# MightyMoose
-
-# Web workbench (sass)
-
-# Installshield output folder
-
-# DocProject is a documentation generator add-in
-
-# Click-Once directory
-
-# Publish Web Output
-# Note: Comment the next line if you want to checkin your web deploy settings,
-# but database connection strings (with potential passwords) will be unencrypted
-
-# Microsoft Azure Web App publish settings. Comment the next line if you want to
-# checkin your Azure Web App publish settings, but sensitive information contained
-# in these scripts will be unencrypted
-
-# NuGet Packages
-# NuGet Symbol Packages
-# The packages folder can be ignored because of Package Restore
-# except build/, which is used as an MSBuild target.
-# Uncomment if necessary however generally it will be regenerated when needed
-# NuGet v3's project.json files produces more ignorable files
-
-# Microsoft Azure Build Output
-
-# Microsoft Azure Emulator
-
-# Windows Store app package directories and files
-
-# Visual Studio cache files
-# files ending in .cache can be ignored
-# but keep track of directories ending in .cache
-
-# Others
-
-# Including strong name files can present a security risk
-# (https://github.com/github/gitignore/pull/2483#issue-259490424)
-
-# Since there are multiple workflows, uncomment next line to ignore bower_components
-# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
-
-# RIA/Silverlight projects
-
-# Backup & report files from converting an old project file
-# to a newer Visual Studio version. Backup files are not needed,
-# because we have git ;-)
-
-# SQL Server files
-
-# Business Intelligence projects
-
-# Microsoft Fakes
-
-# GhostDoc plugin setting file
-
-# Node.js Tools for Visual Studio
-
-# Visual Studio 6 build log
-
-# Visual Studio 6 workspace options file
-
-# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
-
-# Visual Studio 6 auto-generated project file (contains which files were open etc.)
-
-# Visual Studio 6 workspace and project file (working project files containing files to include in project)
-
-# Visual Studio 6 technical files
-
-# Visual Studio LightSwitch build output
-
-# Paket dependency manager
-
-# FAKE - F# Make
-
-# CodeRush personal settings
-
-# Python Tools for Visual Studio (PTVS)
-
-# Cake - Uncomment if you are using it
-# tools/**
-# !tools/packages.config
-
-# Tabs Studio
-
-# Telerik's JustMock configuration file
-
-# BizTalk build output
-
-# OpenCover UI analysis results
-
-# Azure Stream Analytics local run output
-
-# MSBuild Binary and Structured Log
-
-# NVidia Nsight GPU debugger configuration file
-
-# MFractors (Xamarin productivity tool) working folder
-
-# Local History for Visual Studio
-
-# Visual Studio History (VSHistory) files
-
-# BeatPulse healthcheck temp database
-
-# Backup folder for Package Reference Convert tool in Visual Studio 2017
-
-# Ionide (cross platform F# VS Code tools) working folder
-
-# Fody - auto-generated XML schema
-
-# VS Code files for those working on multiple tools
-
-# Local History for Visual Studio Code
-
-# Windows Installer files from build outputs
-
-# JetBrains Rider
-
-### VisualStudio Patch ###
-# Additional files built by Visual Studio
-
-# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,visualstudio,visualbasic,test,ssh,spreadsheet,serverless,osx,microsoftoffice,macos,linux,executable,dotnetcore,dotfilessh,diskimage,datarecovery,database,data,csharp,compressedarchive,compressed,certificates,archive,archives,azurefunctions,diff,dotenv,dotsettings,git,gitbook,text,textpattern
-
-# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
-
-[Nn][Uu][Gg][Ee][Tt].[Cc][Oo][Nn][Ff][Ii][Gg]
-*.nupkg
-*.cache
-*.assets.json
-*.g.*
-*.generated.*
-*.nuget.g.props
-*.nuget.g.targets
-*.dll
-*/site/*
-*site/*
-*/obj/*
-**/obj/*
diff --git a/src/MediatR/Dgmjr.MediatR.csproj b/src/MediatR/Dgmjr.MediatR.csproj
deleted file mode 100644
index 9b94b03..0000000
--- a/src/MediatR/Dgmjr.MediatR.csproj
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- netstandard2.1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/MediatR/Dgmjr.MediatR.sln b/src/MediatR/Dgmjr.MediatR.sln
deleted file mode 100644
index abb3adb..0000000
--- a/src/MediatR/Dgmjr.MediatR.sln
+++ /dev/null
@@ -1,48 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dgmjr.MediatR", "Dgmjr.MediatR.csproj", "{EF195AA8-224E-4CDD-8AEC-5F1C123B0242}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dgmjr.MediatR.Abstractions", "..\Abstractions\Dgmjr.MediatR.Abstractions.csproj", "{B1504B40-5834-4319-ACF4-E7E03BD163C7}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{34BD59A5-57BE-43D8-8D7A-AB8C8934656C}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Local|Any CPU = Local|Any CPU
- Debug|Any CPU = Debug|Any CPU
- Staging|Any CPU = Staging|Any CPU
- Release|Any CPU = Release|Any CPU
- Testing|Any CPU = Testing|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Local|Any CPU.ActiveCfg = Local|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Local|Any CPU.Build.0 = Local|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Staging|Any CPU.ActiveCfg = Staging|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Staging|Any CPU.Build.0 = Staging|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Release|Any CPU.Build.0 = Release|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Testing|Any CPU.ActiveCfg = Testing|Any CPU
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242}.Testing|Any CPU.Build.0 = Testing|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Local|Any CPU.ActiveCfg = Local|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Local|Any CPU.Build.0 = Local|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Staging|Any CPU.ActiveCfg = Staging|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Staging|Any CPU.Build.0 = Staging|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Release|Any CPU.Build.0 = Release|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Testing|Any CPU.ActiveCfg = Testing|Any CPU
- {B1504B40-5834-4319-ACF4-E7E03BD163C7}.Testing|Any CPU.Build.0 = Testing|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {EF195AA8-224E-4CDD-8AEC-5F1C123B0242} = {34BD59A5-57BE-43D8-8D7A-AB8C8934656C}
- {B1504B40-5834-4319-ACF4-E7E03BD163C7} = {34BD59A5-57BE-43D8-8D7A-AB8C8934656C}
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {AF6C9492-B47E-4171-8513-B707F7DECCD9}
- EndGlobalSection
-EndGlobal
diff --git a/src/Notifications.Abstractions/Dgmjr.MediatR.Notifications.Abstractions.csproj b/src/Notifications.Abstractions/Dgmjr.MediatR.Notifications.Abstractions.csproj
new file mode 100644
index 0000000..849fdf4
--- /dev/null
+++ b/src/Notifications.Abstractions/Dgmjr.MediatR.Notifications.Abstractions.csproj
@@ -0,0 +1,24 @@
+
+
+
+
+ netstandard2.1
+
+
+
+
+
+
+
+
+
diff --git a/src/Abstractions/Dgmjr.MediatR.Abstractions.props b/src/Notifications.Abstractions/Dgmjr.MediatR.Notifications.Abstractions.props
similarity index 100%
rename from src/Abstractions/Dgmjr.MediatR.Abstractions.props
rename to src/Notifications.Abstractions/Dgmjr.MediatR.Notifications.Abstractions.props
diff --git a/src/Abstractions/ICreatedNotification.cs b/src/Notifications.Abstractions/ICreatedNotification.cs
similarity index 82%
rename from src/Abstractions/ICreatedNotification.cs
rename to src/Notifications.Abstractions/ICreatedNotification.cs
index f13a589..760eece 100644
--- a/src/Abstractions/ICreatedNotification.cs
+++ b/src/Notifications.Abstractions/ICreatedNotification.cs
@@ -10,8 +10,7 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-namespace Dgmjr.MediatR.Abstractions;
-using System.Net.Http.Headers;
+namespace Dgmjr.MediatR.Notifications.Abstractions;
public interface ICreatedNotification : INotification
where TId : IComparable, IEquatable
diff --git a/src/Abstractions/IDeletedNotification.cs b/src/Notifications.Abstractions/IDeletedNotification.cs
similarity index 87%
rename from src/Abstractions/IDeletedNotification.cs
rename to src/Notifications.Abstractions/IDeletedNotification.cs
index aa29f0b..9e55145 100644
--- a/src/Abstractions/IDeletedNotification.cs
+++ b/src/Notifications.Abstractions/IDeletedNotification.cs
@@ -10,7 +10,7 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-namespace Dgmjr.MediatR.Abstractions;
+namespace Dgmjr.MediatR.Notifications.Abstractions;
public interface IDeletedNotification : INotification
where TId : IComparable, IEquatable { }
diff --git a/src/Abstractions/IUpdatedNotification.cs b/src/Notifications.Abstractions/IUpdatedNotification.cs
similarity index 84%
rename from src/Abstractions/IUpdatedNotification.cs
rename to src/Notifications.Abstractions/IUpdatedNotification.cs
index 0127c7e..5b14366 100644
--- a/src/Abstractions/IUpdatedNotification.cs
+++ b/src/Notifications.Abstractions/IUpdatedNotification.cs
@@ -10,7 +10,7 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-namespace Dgmjr.MediatR.Abstractions;
+namespace Dgmjr.MediatR.Notifications.Abstractions;
public interface IUpdatedNotification : INotification
{
diff --git a/src/MediatR/Notifications/Create.cs b/src/Notifications/CreatedNotification.cs
similarity index 91%
rename from src/MediatR/Notifications/Create.cs
rename to src/Notifications/CreatedNotification.cs
index a63cf80..066fefb 100644
--- a/src/MediatR/Notifications/Create.cs
+++ b/src/Notifications/CreatedNotification.cs
@@ -12,8 +12,6 @@
namespace Dgmjr.MediatR.Notifications;
-using Dgmjr.MediatR.Abstractions;
-
public record struct CreatedNotification
: ICreatedNotification
where TId : IComparable, IEquatable
diff --git a/src/MediatR/Notifications/Delete.cs b/src/Notifications/DeletedNotification.cs
similarity index 100%
rename from src/MediatR/Notifications/Delete.cs
rename to src/Notifications/DeletedNotification.cs
diff --git a/src/Notifications/Dgmjr.MediatR.Notifications.csproj b/src/Notifications/Dgmjr.MediatR.Notifications.csproj
new file mode 100644
index 0000000..0ab639f
--- /dev/null
+++ b/src/Notifications/Dgmjr.MediatR.Notifications.csproj
@@ -0,0 +1,25 @@
+
+
+
+
+ netstandard2.1
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Notifications/Dgmjr.MediatR.Notifications.props b/src/Notifications/Dgmjr.MediatR.Notifications.props
new file mode 100644
index 0000000..fc9c08e
--- /dev/null
+++ b/src/Notifications/Dgmjr.MediatR.Notifications.props
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/Notifications/Dgmjr.MediatR.Notifications.sln b/src/Notifications/Dgmjr.MediatR.Notifications.sln
new file mode 100644
index 0000000..dbad4a0
--- /dev/null
+++ b/src/Notifications/Dgmjr.MediatR.Notifications.sln
@@ -0,0 +1,70 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B283EBC2-E01F-412D-9339-FD56EF114549}"
+ ProjectSection(SolutionItems) = preProject
+ ..\..\..\..\Packages\Versions.props = ..\..\..\..\Packages\Versions.props
+ ..\..\..\..\Packages\Versions.Local.json = ..\..\..\..\Packages\Versions.Local.json
+ ..\..\..\..\Packages\Versions.Local.props = ..\..\..\..\Packages\Versions.Local.props
+ ..\..\..\..\Packages\Packages.pkgs = ..\..\..\..\Packages\Packages.pkgs
+ ..\..\..\..\Packages\Packages\AnyOf.pkgs = ..\..\..\..\Packages\Packages\AnyOf.pkgs
+ ..\..\..\..\Packages\Packages\APIVersioning.pkgs = ..\..\..\..\Packages\Packages\APIVersioning.pkgs
+ ..\..\..\..\Packages\Packages\AutoMapper.pkgs = ..\..\..\..\Packages\Packages\AutoMapper.pkgs
+ ..\..\..\..\Packages\Packages\Azure.pkgs = ..\..\..\..\Packages\Packages\Azure.pkgs
+ ..\..\..\..\Packages\Packages\AzureFunctions.pkgs = ..\..\..\..\Packages\Packages\AzureFunctions.pkgs
+ ..\..\..\..\Packages\Packages\DDD.pkgs = ..\..\..\..\Packages\Packages\DDD.pkgs
+ ..\..\..\..\Packages\Packages\GlobalBuild.pkgs = ..\..\..\..\Packages\Packages\GlobalBuild.pkgs
+ ..\..\..\..\Packages\Packages\Images.pkgs = ..\..\..\..\Packages\Packages\Images.pkgs
+ ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs = ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs
+ ..\..\..\..\Packages\Packages\MediatR.pkgs = ..\..\..\..\Packages\Packages\MediatR.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs = ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs
+ ..\..\..\..\Packages\Packages\Miscellany.pkgs = ..\..\..\..\Packages\Packages\Miscellany.pkgs
+ ..\..\..\..\Packages\Packages\MSBuild.pkgs = ..\..\..\..\Packages\Packages\MSBuild.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs = ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs = ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs
+ ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs = ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs
+ ..\..\..\..\Packages\Packages\NuGet.pkgs = ..\..\..\..\Packages\Packages\NuGet.pkgs
+ ..\..\..\..\Packages\Packages\Powershell.pkgs = ..\..\..\..\Packages\Packages\Powershell.pkgs
+ ..\..\..\..\Packages\Packages\Roslyn.pkgs = ..\..\..\..\Packages\Packages\Roslyn.pkgs
+ ..\..\..\..\Packages\Packages\Serilog.pkgs = ..\..\..\..\Packages\Packages\Serilog.pkgs
+ ..\..\..\..\Packages\Packages\SlnGen.pkgs = ..\..\..\..\Packages\Packages\SlnGen.pkgs
+ ..\..\..\..\Packages\Packages\Swashbuckle.pkgs = ..\..\..\..\Packages\Packages\Swashbuckle.pkgs
+ ..\..\..\..\Packages\Packages\System.pkgs = ..\..\..\..\Packages\Packages\System.pkgs
+ ..\..\..\..\Packages\Packages\Telegram.pkgs = ..\..\..\..\Packages\Packages\Telegram.pkgs
+ ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs = ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs
+ ..\..\..\..\Packages\Packages\Testing.pkgs = ..\..\..\..\Packages\Packages\Testing.pkgs
+ ..\..\..\..\Packages\Packages\ThisAssembly.pkgs = ..\..\..\..\Packages\Packages\ThisAssembly.pkgs
+ ..\..\..\..\Packages\Packages\Validation.pkgs = ..\..\..\..\Packages\Packages\Validation.pkgs
+ ..\..\..\..\Packages\Packages\XmlDocMd.pkgs = ..\..\..\..\Packages\Packages\XmlDocMd.pkgs
+ ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props = ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props
+ ..\..\..\..\Packages\Versions\AutoMapper.props = ..\..\..\..\Packages\Versions\AutoMapper.props
+ ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props = ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props
+ ..\..\..\..\Packages\Versions\EFCore.props = ..\..\..\..\Packages\Versions\EFCore.props
+ ..\..\..\..\Packages\Versions\JsonPatch.props = ..\..\..\..\Packages\Versions\JsonPatch.props
+ ..\..\..\..\Packages\Versions\MediatR.props = ..\..\..\..\Packages\Versions\MediatR.props
+ ..\..\..\..\Packages\Versions\Microsoft.Build.props = ..\..\..\..\Packages\Versions\Microsoft.Build.props
+ ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props = ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props
+ ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props = ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props
+ ..\..\..\..\Packages\Versions\PowerShell.props = ..\..\..\..\Packages\Versions\PowerShell.props
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Local|Any CPU = Local|Any CPU
+ Debug|Any CPU = Debug|Any CPU
+ Testing|Any CPU = Testing|Any CPU
+ Staging|Any CPU = Staging|Any CPU
+ Production|Any CPU = Production|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {5E769951-E3D8-4D74-8260-C36F4A0FCD28}
+ EndGlobalSection
+EndGlobal
diff --git a/src/MediatR/Notifications/Notification.cs b/src/Notifications/Notification.cs
similarity index 100%
rename from src/MediatR/Notifications/Notification.cs
rename to src/Notifications/Notification.cs
diff --git a/src/MediatR/Notifications/Update.cs b/src/Notifications/UpdatedNotification.cs
similarity index 100%
rename from src/MediatR/Notifications/Update.cs
rename to src/Notifications/UpdatedNotification.cs
diff --git a/src/Queries.Abstractions/Dgmjr.MediatR.Queries.Abstractions.csproj b/src/Queries.Abstractions/Dgmjr.MediatR.Queries.Abstractions.csproj
new file mode 100644
index 0000000..849fdf4
--- /dev/null
+++ b/src/Queries.Abstractions/Dgmjr.MediatR.Queries.Abstractions.csproj
@@ -0,0 +1,24 @@
+
+
+
+
+ netstandard2.1
+
+
+
+
+
+
+
+
+
diff --git a/src/Queries.Abstractions/Dgmjr.MediatR.Queries.Abstractions.props b/src/Queries.Abstractions/Dgmjr.MediatR.Queries.Abstractions.props
new file mode 100644
index 0000000..2d6e64b
--- /dev/null
+++ b/src/Queries.Abstractions/Dgmjr.MediatR.Queries.Abstractions.props
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
diff --git a/src/Abstractions/IQuery.cs b/src/Queries.Abstractions/IQuery.cs
similarity index 80%
rename from src/Abstractions/IQuery.cs
rename to src/Queries.Abstractions/IQuery.cs
index fbb4ac3..93f3c6a 100644
--- a/src/Abstractions/IQuery.cs
+++ b/src/Queries.Abstractions/IQuery.cs
@@ -10,21 +10,17 @@
* License: MIT (https://opensource.org/licenses/MIT)
*/
-using System.Linq.Expressions;
-using Dgmjr.Abstractions;
-
-namespace Dgmjr.MediatR.Abstractions;
+namespace Dgmjr.MediatR.Queries.Abstractions;
public interface IQuery : IQueryBase, IRequest
where TId : IComparable, IEquatable { }
-public interface IQuery : IQueryBase, IRequest>
+public interface IQuery : IQueryBase, IRequest> { }
+
+public interface IQueryBase
{
int PageSize { get; }
int PageNumber { get; }
-}
-public interface IQueryBase
-{
Expression>? Predicate { get; }
}
diff --git a/src/Queries/Dgmjr.MediatR.Queries.csproj b/src/Queries/Dgmjr.MediatR.Queries.csproj
new file mode 100644
index 0000000..034f305
--- /dev/null
+++ b/src/Queries/Dgmjr.MediatR.Queries.csproj
@@ -0,0 +1,25 @@
+
+
+
+
+ netstandard2.1
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Queries/Dgmjr.MediatR.Queries.props b/src/Queries/Dgmjr.MediatR.Queries.props
new file mode 100644
index 0000000..d832471
--- /dev/null
+++ b/src/Queries/Dgmjr.MediatR.Queries.props
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/Queries/Dgmjr.MediatR.Queries.sln b/src/Queries/Dgmjr.MediatR.Queries.sln
new file mode 100644
index 0000000..5b7015d
--- /dev/null
+++ b/src/Queries/Dgmjr.MediatR.Queries.sln
@@ -0,0 +1,70 @@
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B283EBC2-E01F-412D-9339-FD56EF114549}"
+ ProjectSection(SolutionItems) = preProject
+ ..\..\..\..\Packages\Versions.props = ..\..\..\..\Packages\Versions.props
+ ..\..\..\..\Packages\Versions.Local.json = ..\..\..\..\Packages\Versions.Local.json
+ ..\..\..\..\Packages\Versions.Local.props = ..\..\..\..\Packages\Versions.Local.props
+ ..\..\..\..\Packages\Packages.pkgs = ..\..\..\..\Packages\Packages.pkgs
+ ..\..\..\..\Packages\Packages\AnyOf.pkgs = ..\..\..\..\Packages\Packages\AnyOf.pkgs
+ ..\..\..\..\Packages\Packages\APIVersioning.pkgs = ..\..\..\..\Packages\Packages\APIVersioning.pkgs
+ ..\..\..\..\Packages\Packages\AutoMapper.pkgs = ..\..\..\..\Packages\Packages\AutoMapper.pkgs
+ ..\..\..\..\Packages\Packages\Azure.pkgs = ..\..\..\..\Packages\Packages\Azure.pkgs
+ ..\..\..\..\Packages\Packages\AzureFunctions.pkgs = ..\..\..\..\Packages\Packages\AzureFunctions.pkgs
+ ..\..\..\..\Packages\Packages\DDD.pkgs = ..\..\..\..\Packages\Packages\DDD.pkgs
+ ..\..\..\..\Packages\Packages\GlobalBuild.pkgs = ..\..\..\..\Packages\Packages\GlobalBuild.pkgs
+ ..\..\..\..\Packages\Packages\Images.pkgs = ..\..\..\..\Packages\Packages\Images.pkgs
+ ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs = ..\..\..\..\Packages\Packages\McMaster.CommandLineUtils.pkgs
+ ..\..\..\..\Packages\Packages\MediatR.pkgs = ..\..\..\..\Packages\Packages\MediatR.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.AspNetCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs = ..\..\..\..\Packages\Packages\Microsoft.EntityFrameworkCore.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Extensions.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs = ..\..\..\..\Packages\Packages\Microsoft.Identity.pkgs
+ ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs = ..\..\..\..\Packages\Packages\Microsoft.VisualStudio.Shell.Interop.pkgs
+ ..\..\..\..\Packages\Packages\Miscellany.pkgs = ..\..\..\..\Packages\Packages\Miscellany.pkgs
+ ..\..\..\..\Packages\Packages\MSBuild.pkgs = ..\..\..\..\Packages\Packages\MSBuild.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs = ..\..\..\..\Packages\Packages\MSBuildProjectCreator.pkgs
+ ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs = ..\..\..\..\Packages\Packages\MSBuildSdks.pkgs
+ ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs = ..\..\..\..\Packages\Packages\Newtonsoft.Json.pkgs
+ ..\..\..\..\Packages\Packages\NuGet.pkgs = ..\..\..\..\Packages\Packages\NuGet.pkgs
+ ..\..\..\..\Packages\Packages\Powershell.pkgs = ..\..\..\..\Packages\Packages\Powershell.pkgs
+ ..\..\..\..\Packages\Packages\Roslyn.pkgs = ..\..\..\..\Packages\Packages\Roslyn.pkgs
+ ..\..\..\..\Packages\Packages\Serilog.pkgs = ..\..\..\..\Packages\Packages\Serilog.pkgs
+ ..\..\..\..\Packages\Packages\SlnGen.pkgs = ..\..\..\..\Packages\Packages\SlnGen.pkgs
+ ..\..\..\..\Packages\Packages\Swashbuckle.pkgs = ..\..\..\..\Packages\Packages\Swashbuckle.pkgs
+ ..\..\..\..\Packages\Packages\System.pkgs = ..\..\..\..\Packages\Packages\System.pkgs
+ ..\..\..\..\Packages\Packages\Telegram.pkgs = ..\..\..\..\Packages\Packages\Telegram.pkgs
+ ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs = ..\..\..\..\Packages\Packages\Testing.EfCore.pkgs
+ ..\..\..\..\Packages\Packages\Testing.pkgs = ..\..\..\..\Packages\Packages\Testing.pkgs
+ ..\..\..\..\Packages\Packages\ThisAssembly.pkgs = ..\..\..\..\Packages\Packages\ThisAssembly.pkgs
+ ..\..\..\..\Packages\Packages\Validation.pkgs = ..\..\..\..\Packages\Packages\Validation.pkgs
+ ..\..\..\..\Packages\Packages\XmlDocMd.pkgs = ..\..\..\..\Packages\Packages\XmlDocMd.pkgs
+ ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props = ..\..\..\..\Packages\Versions\AspNetCoreIdentity.props
+ ..\..\..\..\Packages\Versions\AutoMapper.props = ..\..\..\..\Packages\Versions\AutoMapper.props
+ ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props = ..\..\..\..\Packages\Versions\CoreIntegratedLibs.props
+ ..\..\..\..\Packages\Versions\EFCore.props = ..\..\..\..\Packages\Versions\EFCore.props
+ ..\..\..\..\Packages\Versions\JsonPatch.props = ..\..\..\..\Packages\Versions\JsonPatch.props
+ ..\..\..\..\Packages\Versions\MediatR.props = ..\..\..\..\Packages\Versions\MediatR.props
+ ..\..\..\..\Packages\Versions\Microsoft.Build.props = ..\..\..\..\Packages\Versions\Microsoft.Build.props
+ ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props = ..\..\..\..\Packages\Versions\Microsoft.CodeAnalysis.props
+ ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props = ..\..\..\..\Packages\Versions\Microsoft.Extensions.Logging.props
+ ..\..\..\..\Packages\Versions\PowerShell.props = ..\..\..\..\Packages\Versions\PowerShell.props
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Local|Any CPU = Local|Any CPU
+ Debug|Any CPU = Debug|Any CPU
+ Testing|Any CPU = Testing|Any CPU
+ Staging|Any CPU = Staging|Any CPU
+ Production|Any CPU = Production|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {D5D15FA2-D767-4BE0-9CA2-454939DBDD3B}
+ EndGlobalSection
+EndGlobal
diff --git a/src/MediatR/Queries/Query.cs b/src/Queries/Query.cs
similarity index 56%
rename from src/MediatR/Queries/Query.cs
rename to src/Queries/Query.cs
index 71f125e..f027cd0 100644
--- a/src/MediatR/Queries/Query.cs
+++ b/src/Queries/Query.cs
@@ -1,46 +1,48 @@
+using System.Security.Cryptography;
+
/*
- * Create.cs
+ * Query.cs
*
- * Created: 2022-12-21-09:48:41
- * Modified: 2022-12-21-10:11:46
+ * Created: 2023-10-01-11:36:53
+ * Modified: 2023-10-01-11:36:53
*
* Author: David G. Moore, Jr.
*
- * Copyright © 2022-2023 David G. Moore, Jr., All Rights Reserved
+ * Copyright © 2022 - 2023 David G. Moore, Jr., All Rights Reserved
* License: MIT (https://opensource.org/licenses/MIT)
*/
-using System.Linq.Expressions;
-using System.Runtime.CompilerServices;
-
namespace Dgmjr.MediatR.Queries;
-public record struct Query : IQuery
+public record struct Query : IQuery
+ where TId : IComparable, IEquatable
+ where TDto : IIdentifiable
{
- public Query() { }
+ public Query(IEnumerable ids, int pageNumber = 1, int pageSize = int.MaxValue)
+ : this(_ => ids.Contains(_.Id), pageNumber, pageSize) { }
+
+ public Query(TId id)
+ : this(_ => id.Equals(_.Id), 1, 1) { }
public Query(
- Expression> predicate,
+ Expression>? predicate = null,
int pageNumber = 1,
int pageSize = int.MaxValue
)
{
- Predicate = predicate;
+ Predicate = predicate ?? Predicate;
PageNumber = pageNumber;
PageSize = pageSize;
}
+ public int PageSize { get; } = 1;
+ public int PageNumber { get; } = int.MaxValue;
+
public Expression>? Predicate { get; } = _ => true;
- public int PageSize { get; } = int.MaxValue;
- public int PageNumber { get; } = 1;
}
-public record struct Query : IQuery
- where TId : IComparable, IEquatable
- where TDto : IIdentifiable
+public record struct Query : IQuery
{
- public Query() { }
-
public Query(
Expression> predicate,
int pageNumber = 1,
@@ -52,10 +54,8 @@ public Query(
PageSize = pageSize;
}
- public Query(TId id)
- : this(_ => _.Id.Equals(id), 1, 1) { }
+ public int PageSize { get; } = 1;
+ public int PageNumber { get; } = int.MaxValue;
public Expression>? Predicate { get; } = _ => true;
- public int PageSize { get; } = int.MaxValue;
- public int PageNumber { get; } = 1;
}
diff --git a/src/MediatR/System.Runtime.CompilerServices/IsExternalInit.cs b/src/System.Runtime.CompilerServices/IsExternalInit.cs
similarity index 100%
rename from src/MediatR/System.Runtime.CompilerServices/IsExternalInit.cs
rename to src/System.Runtime.CompilerServices/IsExternalInit.cs