Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
Add BlobProvider to sandbox app
Browse files Browse the repository at this point in the history
  • Loading branch information
enisn committed Aug 12, 2021
1 parent 8fe2da1 commit c5c2e52
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<PackageReference Include="Volo.Abp.PermissionManagement.Domain.Shared" Version="4.4.0" />
<PackageReference Include="Volo.Abp.SettingManagement.Domain.Shared" Version="4.4.0" />
<PackageReference Include="Volo.CmsKit.Domain.Shared" Version="4.4.0" />
<PackageReference Include="Volo.Abp.BlobStoring.Database.Domain.Shared" Version="4.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Sandbox.Localization;
using Volo.Abp.AuditLogging;
using Volo.Abp.BackgroundJobs;
using Volo.Abp.BlobStoring.Database;
using Volo.Abp.FeatureManagement;
using Volo.Abp.Identity;
using Volo.Abp.IdentityServer;
Expand All @@ -27,6 +28,7 @@ namespace Sandbox
typeof(AbpTenantManagementDomainSharedModule)
)]
[DependsOn(typeof(CmsKitDomainSharedModule))]
[DependsOn(typeof(BlobStoringDatabaseDomainSharedModule))]
public class SandboxDomainSharedModule : AbpModule
{
public override void PreConfigureServices(ServiceConfigurationContext context)
Expand Down
1 change: 1 addition & 0 deletions sandbox/src/Sandbox.Domain/Sandbox.Domain.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<PackageReference Include="Volo.Abp.FeatureManagement.Domain" Version="4.4.0" />
<PackageReference Include="Volo.Abp.SettingManagement.Domain" Version="4.4.0" />
<PackageReference Include="Volo.CmsKit.Domain" Version="4.4.0" />
<PackageReference Include="Volo.Abp.BlobStoring.Database.Domain" Version="4.4.0" />
</ItemGroup>

</Project>
2 changes: 2 additions & 0 deletions sandbox/src/Sandbox.Domain/SandboxDomainModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Sandbox.MultiTenancy;
using Volo.Abp.AuditLogging;
using Volo.Abp.BackgroundJobs;
using Volo.Abp.BlobStoring.Database;
using Volo.Abp.Emailing;
using Volo.Abp.FeatureManagement;
using Volo.Abp.Identity;
Expand Down Expand Up @@ -31,6 +32,7 @@ namespace Sandbox
typeof(AbpEmailingModule)
)]
[DependsOn(typeof(CmsKitDomainModule))]
[DependsOn(typeof(BlobStoringDatabaseDomainModule))]
public class SandboxDomainModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
Expand Down
2 changes: 2 additions & 0 deletions sandbox/src/Sandbox.MongoDB/MongoDb/SandboxMongoDbModule.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.AuditLogging.MongoDB;
using Volo.Abp.BackgroundJobs.MongoDB;
using Volo.Abp.BlobStoring.Database.MongoDB;
using Volo.Abp.FeatureManagement.MongoDB;
using Volo.Abp.Identity.MongoDB;
using Volo.Abp.IdentityServer.MongoDB;
Expand All @@ -25,6 +26,7 @@ namespace Sandbox.MongoDB
typeof(AbpFeatureManagementMongoDbModule)
)]
[DependsOn(typeof(CmsKitMongoDbModule))]
[DependsOn(typeof(BlobStoringDatabaseMongoDbModule))]
public class SandboxMongoDbModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
Expand Down
1 change: 1 addition & 0 deletions sandbox/src/Sandbox.MongoDB/Sandbox.MongoDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<PackageReference Include="Volo.Abp.AuditLogging.MongoDB" Version="4.4.0" />
<PackageReference Include="Volo.Abp.TenantManagement.MongoDB" Version="4.4.0" />
<PackageReference Include="Volo.Abp.FeatureManagement.MongoDB" Version="4.4.0" />
<PackageReference Include="Volo.Abp.BlobStoring.Database.MongoDB" Version="4.4.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<IsPackable>true</IsPackable>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Authors>enisn</Authors>
<Description>A Material design theme for ABP Framework.</Description>
<PackageReleaseNotes>Initial release.</PackageReleaseNotes>
Expand Down

0 comments on commit c5c2e52

Please sign in to comment.