Setup initial solution structure fo application
This commit is contained in:
23
BrightGlimmer.CQRS/BrightGlimmer.Cqrs.csproj
Normal file
23
BrightGlimmer.CQRS/BrightGlimmer.Cqrs.csproj
Normal file
@@ -0,0 +1,23 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Domain\Interfaces\" />
|
||||
<Folder Include="Handlers\CommandHandlers\" />
|
||||
<Folder Include="Commands\" />
|
||||
<Folder Include="Handlers\QueryHandlers\" />
|
||||
<Folder Include="Queries\" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MediatR" Version="6.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\BrightGlimmer.Data\BrightGlimmer.Data.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
8
BrightGlimmer.CQRS/Cqrs.cs
Normal file
8
BrightGlimmer.CQRS/Cqrs.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BrightGlimmer.Cqrs
|
||||
{
|
||||
public class Cqrs { }
|
||||
}
|
||||
Reference in New Issue
Block a user