Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CAP
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
CAP
Commits
878b4018
Commit
878b4018
authored
Jul 17, 2017
by
yangxiaodong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename project namespace.
parent
f78a3a23
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
13 additions
and
19 deletions
+13
-19
CAP.SqlServerCapOptionsExtension.cs
...P.EntityFrameworkCore/CAP.SqlServerCapOptionsExtension.cs
+1
-1
CapPublisher.cs
src/DotNetCore.CAP.EntityFrameworkCore/CapPublisher.cs
+1
-1
DotNetCore.CAP.SqlServer.csproj
...e.CAP.EntityFrameworkCore/DotNetCore.CAP.SqlServer.csproj
+3
-8
FetchedMessage.cs
src/DotNetCore.CAP.EntityFrameworkCore/FetchedMessage.cs
+1
-1
IAdditionalProcessor.Default.cs
...e.CAP.EntityFrameworkCore/IAdditionalProcessor.Default.cs
+1
-1
SqlServerFetchedMessage.cs
...etCore.CAP.EntityFrameworkCore/SqlServerFetchedMessage.cs
+1
-1
SqlServerStorage.cs
src/DotNetCore.CAP.EntityFrameworkCore/SqlServerStorage.cs
+1
-2
SqlServerStorageConnection.cs
...ore.CAP.EntityFrameworkCore/SqlServerStorageConnection.cs
+2
-2
SqlServerStorageTransaction.cs
...re.CAP.EntityFrameworkCore/SqlServerStorageTransaction.cs
+1
-1
DotNetCore.CAP.EntityFrameworkCore.Test.csproj
...kCore.Test/DotNetCore.CAP.EntityFrameworkCore.Test.csproj
+1
-1
No files found.
src/DotNetCore.CAP.EntityFrameworkCore/CAP.SqlServerCapOptionsExtension.cs
View file @
878b4018
using
System
;
using
System
;
using
DotNetCore.CAP.EntityFrameworkCore
;
using
DotNetCore.CAP.Processor
;
using
DotNetCore.CAP.Processor
;
using
DotNetCore.CAP.SqlServer
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.Extensions.DependencyInjection
;
using
Microsoft.Extensions.DependencyInjection
;
...
...
src/DotNetCore.CAP.EntityFrameworkCore/CapPublisher.cs
View file @
878b4018
...
@@ -8,7 +8,7 @@ using DotNetCore.CAP.Processor;
...
@@ -8,7 +8,7 @@ using DotNetCore.CAP.Processor;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore.Storage
;
using
Microsoft.EntityFrameworkCore.Storage
;
namespace
DotNetCore.CAP.
EntityFrameworkCore
namespace
DotNetCore.CAP.
SqlServer
{
{
public
class
CapPublisher
:
ICapPublisher
public
class
CapPublisher
:
ICapPublisher
{
{
...
...
src/DotNetCore.CAP.EntityFrameworkCore/DotNetCore.CAP.
EntityFrameworkCore
.csproj
→
src/DotNetCore.CAP.EntityFrameworkCore/DotNetCore.CAP.
SqlServer
.csproj
View file @
878b4018
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
<PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard1.6</TargetFramework>
<TargetFramework>netstandard1.6</TargetFramework>
<AssemblyName>DotNetCore.CAP.
EntityFrameworkCore
</AssemblyName>
<AssemblyName>DotNetCore.CAP.
SqlServer
</AssemblyName>
<PackageId>DotNetCore.CAP.
EntityFrameworkCore
</PackageId>
<PackageId>DotNetCore.CAP.
SqlServer
</PackageId>
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback>
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
...
@@ -16,12 +16,7 @@
...
@@ -16,12 +16,7 @@
<ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="1.50.2" />
<PackageReference Include="Dapper" Version="1.50.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="1.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="1.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="1.1.2" />
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="1.1.2" />
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.1" />
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
...
...
src/DotNetCore.CAP.EntityFrameworkCore/FetchedMessage.cs
View file @
878b4018
using
DotNetCore.CAP.Models
;
using
DotNetCore.CAP.Models
;
namespace
DotNetCore.CAP.
EntityFrameworkCore
namespace
DotNetCore.CAP.
SqlServer
{
{
public
class
FetchedMessage
public
class
FetchedMessage
{
{
...
...
src/DotNetCore.CAP.EntityFrameworkCore/IAdditionalProcessor.Default.cs
View file @
878b4018
...
@@ -5,7 +5,7 @@ using Dapper;
...
@@ -5,7 +5,7 @@ using Dapper;
using
DotNetCore.CAP.Processor
;
using
DotNetCore.CAP.Processor
;
using
Microsoft.Extensions.Logging
;
using
Microsoft.Extensions.Logging
;
namespace
DotNetCore.CAP.
EntityFrameworkCore
namespace
DotNetCore.CAP.
SqlServer
{
{
public
class
DefaultAdditionalProcessor
:
IAdditionalProcessor
public
class
DefaultAdditionalProcessor
:
IAdditionalProcessor
{
{
...
...
src/DotNetCore.CAP.EntityFrameworkCore/SqlServerFetchedMessage.cs
View file @
878b4018
...
@@ -4,7 +4,7 @@ using System.Threading;
...
@@ -4,7 +4,7 @@ using System.Threading;
using
Dapper
;
using
Dapper
;
using
DotNetCore.CAP.Models
;
using
DotNetCore.CAP.Models
;
namespace
DotNetCore.CAP.
EntityFrameworkCore
namespace
DotNetCore.CAP.
SqlServer
{
{
public
class
SqlServerFetchedMessage
:
IFetchedMessage
public
class
SqlServerFetchedMessage
:
IFetchedMessage
{
{
...
...
src/DotNetCore.CAP.EntityFrameworkCore/SqlServerStorage.cs
View file @
878b4018
using
System
;
using
System.Data.SqlClient
;
using
System.Data.SqlClient
;
using
System.Threading
;
using
System.Threading
;
using
System.Threading.Tasks
;
using
System.Threading.Tasks
;
...
@@ -6,7 +5,7 @@ using Dapper;
...
@@ -6,7 +5,7 @@ using Dapper;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.Extensions.Logging
;
using
Microsoft.Extensions.Logging
;
namespace
DotNetCore.CAP.
EntityFrameworkCore
namespace
DotNetCore.CAP.
SqlServer
{
{
public
class
SqlServerStorage
:
IStorage
public
class
SqlServerStorage
:
IStorage
{
{
...
...
src/DotNetCore.CAP.EntityFrameworkCore/SqlServerStorageConnection.cs
View file @
878b4018
...
@@ -7,7 +7,7 @@ using DotNetCore.CAP.Infrastructure;
...
@@ -7,7 +7,7 @@ using DotNetCore.CAP.Infrastructure;
using
DotNetCore.CAP.Models
;
using
DotNetCore.CAP.Models
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore
;
namespace
DotNetCore.CAP.
EntityFrameworkCore
namespace
DotNetCore.CAP.
SqlServer
{
{
public
class
SqlServerStorageConnection
:
IStorageConnection
public
class
SqlServerStorageConnection
:
IStorageConnection
{
{
...
@@ -15,7 +15,7 @@ namespace DotNetCore.CAP.EntityFrameworkCore
...
@@ -15,7 +15,7 @@ namespace DotNetCore.CAP.EntityFrameworkCore
public
SqlServerStorageConnection
(
SqlServerOptions
options
)
public
SqlServerStorageConnection
(
SqlServerOptions
options
)
{
{
_options
=
options
;
_options
=
options
;
}
}
public
SqlServerOptions
Options
=>
_options
;
public
SqlServerOptions
Options
=>
_options
;
...
...
src/DotNetCore.CAP.EntityFrameworkCore/SqlServerStorageTransaction.cs
View file @
878b4018
...
@@ -5,7 +5,7 @@ using System.Threading.Tasks;
...
@@ -5,7 +5,7 @@ using System.Threading.Tasks;
using
Dapper
;
using
Dapper
;
using
DotNetCore.CAP.Models
;
using
DotNetCore.CAP.Models
;
namespace
DotNetCore.CAP.
EntityFrameworkCore
namespace
DotNetCore.CAP.
SqlServer
{
{
public
class
SqlServerStorageTransaction
:
IStorageTransaction
,
IDisposable
public
class
SqlServerStorageTransaction
:
IStorageTransaction
,
IDisposable
{
{
...
...
test/DotNetCore.CAP.EntityFrameworkCore.Test/DotNetCore.CAP.EntityFrameworkCore.Test.csproj
View file @
878b4018
...
@@ -18,8 +18,8 @@
...
@@ -18,8 +18,8 @@
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\DotNetCore.CAP.EntityFrameworkCore\DotNetCore.CAP.SqlServer.csproj" />
<ProjectReference Include="..\..\src\DotNetCore.CAP\DotNetCore.CAP.csproj" />
<ProjectReference Include="..\..\src\DotNetCore.CAP\DotNetCore.CAP.csproj" />
<ProjectReference Include="..\..\src\DotNetCore.CAP.EntityFrameworkCore\DotNetCore.CAP.EntityFrameworkCore.csproj" />
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment