Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions Repository.Mongo.Cqrs.sln
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
# Visual Studio 15
VisualStudioVersion = 15.0.28307.421
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Repository.Mongo.Cqrs", "Repository.Mongo.Cqrs\Repository.Mongo.Cqrs.xproj", "{84E62ADA-6C0E-4488-BDCC-81228671C1E2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3F581870-E016-4EB4-ADFC-11EE3AB51038}"
ProjectSection(SolutionItems) = preProject
global.json = global.json
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Repository.Mongo.Cqrs", "Repository.Mongo.Cqrs\Repository.Mongo.Cqrs.csproj", "{84E62ADA-6C0E-4488-BDCC-81228671C1E2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -24,4 +24,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C571B718-8385-4C25-94D2-94DD29664CBA}
EndGlobalSection
EndGlobal
7 changes: 4 additions & 3 deletions Repository.Mongo.Cqrs/IReadRepository.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System;
using System.Linq.Expressions;
using System.Collections.Generic;
// Mongo
using MongoDB.Driver;

namespace Repository.Mongo.Cqrs
{
Expand Down
7 changes: 4 additions & 3 deletions Repository.Mongo.Cqrs/IWriteRepository.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System;
using System.Linq.Expressions;
using System.Collections.Generic;
// Mongo
using MongoDB.Driver;

namespace Repository.Mongo.Cqrs
{
Expand Down
7 changes: 4 additions & 3 deletions Repository.Mongo.Cqrs/ReadRepository.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System;
using System.Linq.Expressions;
using System.Collections.Generic;
// Mongo
using MongoDB.Driver;

namespace Repository.Mongo.Cqrs
{
Expand Down
31 changes: 31 additions & 0 deletions Repository.Mongo.Cqrs/Repository.Mongo.Cqrs.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>This package contains base implementations for CQRS pattern on Repository.Mongo package. It is also possible to use Repository.Mongo.Cached package</Description>
<VersionPrefix>1.0.1</VersionPrefix>
<Authors>UsameEsendir</Authors>
<TargetFramework>net46</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>Repository.Mongo.Cqrs</AssemblyName>
<PackageId>Repository.Mongo.Cqrs</PackageId>
<PackageTags>mongo;repository;cqrs</PackageTags>
<PackageReleaseNotes>packages updated</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/esendir/MongoRepository.Cqrs</PackageProjectUrl>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Repository.Mongo" Version="2.1.2" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

</Project>
21 changes: 0 additions & 21 deletions Repository.Mongo.Cqrs/Repository.Mongo.Cqrs.xproj

This file was deleted.

7 changes: 4 additions & 3 deletions Repository.Mongo.Cqrs/WriteRepository.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System;
using System.Linq.Expressions;
using System.Collections.Generic;
// Mongo
using MongoDB.Driver;

namespace Repository.Mongo.Cqrs
{
Expand Down
20 changes: 0 additions & 20 deletions Repository.Mongo.Cqrs/project.json

This file was deleted.