Browse Source

rename LINGYUN.Abp.RedisLock to LINGYUN.Abp.DistributedLock.Redis

pull/15/head
cKey 6 years ago
parent
commit
dbe5aa3f39
  1. 0
      aspnet-core/modules/common/LINGYUN.Abp.DistributedLock.Redis/LINGYUN.Abp.DistributedLock.Redis.csproj
  2. 2
      aspnet-core/modules/common/LINGYUN.Abp.DistributedLock.Redis/LINGYUN/Abp/DistributedLock/Redis/AbpRedisLockModule.cs
  3. 2
      aspnet-core/modules/common/LINGYUN.Abp.DistributedLock.Redis/LINGYUN/Abp/DistributedLock/Redis/RedisDistributedLock.cs
  4. 2
      aspnet-core/modules/common/LINGYUN.Abp.DistributedLock.Redis/LINGYUN/Abp/DistributedLock/Redis/RedisLockOptions.cs
  5. 4
      aspnet-core/modules/common/LINGYUN.Abp.DistributedLock/LINGYUN.Abp.DistributedLock.csproj
  6. 2
      aspnet-core/modules/common/LINGYUN.Abp.DistributedLock/LINGYUN/Abp/DistributedLock/DistributedLockException.cs
  7. 2
      aspnet-core/modules/common/LINGYUN.Abp.DistributedLock/LINGYUN/Abp/DistributedLock/IDistributedLock.cs

0
aspnet-core/modules/common/LINGYUN.Abp.RedisLock/LINGYUN.Abp.RedisLock.csproj → aspnet-core/modules/common/LINGYUN.Abp.DistributedLock.Redis/LINGYUN.Abp.DistributedLock.Redis.csproj

2
aspnet-core/modules/common/LINGYUN.Abp.RedisLock/LINGYUN/Abp/Distributed/Redis/AbpRedisLockModule.cs → aspnet-core/modules/common/LINGYUN.Abp.DistributedLock.Redis/LINGYUN/Abp/DistributedLock/Redis/AbpRedisLockModule.cs

@ -1,7 +1,7 @@
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.Modularity; using Volo.Abp.Modularity;
namespace LINGYUN.Abp.Distributed.Redis namespace LINGYUN.Abp.DistributedLock.Redis
{ {
public class AbpRedisLockModule : AbpModule public class AbpRedisLockModule : AbpModule
{ {

2
aspnet-core/modules/common/LINGYUN.Abp.RedisLock/LINGYUN/Abp/Distributed/Redis/RedisDistributedLock.cs → aspnet-core/modules/common/LINGYUN.Abp.DistributedLock.Redis/LINGYUN/Abp/DistributedLock/Redis/RedisDistributedLock.cs

@ -10,7 +10,7 @@ using System.Threading.Tasks;
using Volo.Abp; using Volo.Abp;
using Volo.Abp.DependencyInjection; using Volo.Abp.DependencyInjection;
namespace LINGYUN.Abp.Distributed.Redis namespace LINGYUN.Abp.DistributedLock.Redis
{ {
[ExposeServices(typeof(IDistributedLock))] [ExposeServices(typeof(IDistributedLock))]
[Dependency(ServiceLifetime.Singleton, TryRegister = true)] [Dependency(ServiceLifetime.Singleton, TryRegister = true)]

2
aspnet-core/modules/common/LINGYUN.Abp.RedisLock/LINGYUN/Abp/Distributed/Redis/RedisLockOptions.cs → aspnet-core/modules/common/LINGYUN.Abp.DistributedLock.Redis/LINGYUN/Abp/DistributedLock/Redis/RedisLockOptions.cs

@ -1,7 +1,7 @@
using Microsoft.Extensions.Options; using Microsoft.Extensions.Options;
using StackExchange.Redis; using StackExchange.Redis;
namespace LINGYUN.Abp.Distributed.Redis namespace LINGYUN.Abp.DistributedLock.Redis
{ {
public class RedisLockOptions : IOptions<RedisLockOptions> public class RedisLockOptions : IOptions<RedisLockOptions>
{ {

4
aspnet-core/modules/common/LINGYUN.Abp.DistributedLock/LINGYUN.Abp.DistributedLock.csproj

@ -12,4 +12,8 @@
<OutputPath>D:\LocalNuget</OutputPath> <OutputPath>D:\LocalNuget</OutputPath>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LINGYUN.Abp.ExceptionHandling\LINGYUN.Abp.ExceptionHandling.csproj" />
</ItemGroup>
</Project> </Project>

2
aspnet-core/modules/common/LINGYUN.Abp.DistributedLock/LINGYUN/Abp/Distributed/DistributedLockException.cs → aspnet-core/modules/common/LINGYUN.Abp.DistributedLock/LINGYUN/Abp/DistributedLock/DistributedLockException.cs

@ -1,7 +1,7 @@
using LINGYUN.Abp.ExceptionHandling; using LINGYUN.Abp.ExceptionHandling;
using System; using System;
namespace LINGYUN.Abp.Distributed namespace LINGYUN.Abp.DistributedLock
{ {
public class DistributedLockException : Exception, IHasNotifierErrorMessage public class DistributedLockException : Exception, IHasNotifierErrorMessage
{ {

2
aspnet-core/modules/common/LINGYUN.Abp.DistributedLock/LINGYUN/Abp/Distributed/IDistributedLock.cs → aspnet-core/modules/common/LINGYUN.Abp.DistributedLock/LINGYUN/Abp/DistributedLock/IDistributedLock.cs

@ -2,7 +2,7 @@
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace LINGYUN.Abp.Distributed namespace LINGYUN.Abp.DistributedLock
{ {
/// <summary> /// <summary>
/// 分布式锁接口 /// 分布式锁接口
Loading…
Cancel
Save