Browse Source
Merge pull request #17251 from abpframework/AbpBackgroundJobsModule
Depends on `AbpBackgroundJobsModule` in the `DemoAppSharedModule`.
pull/17253/head
liangshiwei
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Shared/DemoAppSharedModule.cs
-
modules/background-jobs/app/Volo.Abp.BackgroundJobs.DemoApp.Shared/Volo.Abp.BackgroundJobs.DemoApp.Shared.csproj
|
|
@ -5,7 +5,7 @@ using Volo.Abp.Modularity; |
|
|
namespace Volo.Abp.BackgroundJobs.DemoApp.Shared |
|
|
namespace Volo.Abp.BackgroundJobs.DemoApp.Shared |
|
|
{ |
|
|
{ |
|
|
[DependsOn( |
|
|
[DependsOn( |
|
|
typeof(AbpBackgroundJobsAbstractionsModule) |
|
|
typeof(AbpBackgroundJobsModule) |
|
|
)] |
|
|
)] |
|
|
public class DemoAppSharedModule : AbpModule |
|
|
public class DemoAppSharedModule : AbpModule |
|
|
{ |
|
|
{ |
|
|
|
|
|
@ -8,7 +8,7 @@ |
|
|
|
|
|
|
|
|
<ItemGroup> |
|
|
<ItemGroup> |
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="$(MicrosoftPackageVersion)" /> |
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="$(MicrosoftPackageVersion)" /> |
|
|
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.BackgroundJobs.Abstractions\Volo.Abp.BackgroundJobs.Abstractions.csproj" /> |
|
|
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.BackgroundJobs\Volo.Abp.BackgroundJobs.csproj" /> |
|
|
</ItemGroup> |
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
</Project> |
|
|
</Project> |
|
|
|