Browse Source

feat: Add the dependency of the MimeCheck module

pull/1550/head
colin 2 weeks ago
parent
commit
9a5a2fede0
  1. 1
      aspnet-core/LINGYUN.MicroService.All.slnx
  2. 1
      aspnet-core/services/LY.MicroService.PlatformManagement.HttpApi.Host/LY.MicroService.PlatformManagement.HttpApi.Host.csproj
  3. 2
      aspnet-core/services/LY.MicroService.PlatformManagement.HttpApi.Host/PlatformManagementHttpApiHostModule.cs

1
aspnet-core/LINGYUN.MicroService.All.slnx

@ -308,6 +308,7 @@
<Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.FileSystem/LINGYUN.Abp.BlobManagement.FileSystem.csproj" /> <Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.FileSystem/LINGYUN.Abp.BlobManagement.FileSystem.csproj" />
<Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/LINGYUN.Abp.BlobManagement.HttpApi.Client.csproj" /> <Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/LINGYUN.Abp.BlobManagement.HttpApi.Client.csproj" />
<Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi/LINGYUN.Abp.BlobManagement.HttpApi.csproj" /> <Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi/LINGYUN.Abp.BlobManagement.HttpApi.csproj" />
<Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.MimeCheck/LINGYUN.Abp.BlobManagement.MimeCheck.csproj" />
<Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.Minio/LINGYUN.Abp.BlobManagement.Minio.csproj" /> <Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.Minio/LINGYUN.Abp.BlobManagement.Minio.csproj" />
<Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.SettingManagement/LINGYUN.Abp.BlobManagement.SettingManagement.csproj" /> <Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.SettingManagement/LINGYUN.Abp.BlobManagement.SettingManagement.csproj" />
<Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.Tencent/LINGYUN.Abp.BlobManagement.Tencent.csproj" /> <Project Path="modules/blob-management/LINGYUN.Abp.BlobManagement.Tencent/LINGYUN.Abp.BlobManagement.Tencent.csproj" />

1
aspnet-core/services/LY.MicroService.PlatformManagement.HttpApi.Host/LY.MicroService.PlatformManagement.HttpApi.Host.csproj

@ -62,6 +62,7 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\migrations\LY.MicroService.Platform.EntityFrameworkCore\LY.MicroService.Platform.EntityFrameworkCore.csproj" /> <ProjectReference Include="..\..\migrations\LY.MicroService.Platform.EntityFrameworkCore\LY.MicroService.Platform.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\..\modules\blob-management\LINGYUN.Abp.BlobManagement.MimeCheck\LINGYUN.Abp.BlobManagement.MimeCheck.csproj" />
<ProjectReference Include="..\..\modules\identity\LINGYUN.Abp.Identity.Session.AspNetCore\LINGYUN.Abp.Identity.Session.AspNetCore.csproj" /> <ProjectReference Include="..\..\modules\identity\LINGYUN.Abp.Identity.Session.AspNetCore\LINGYUN.Abp.Identity.Session.AspNetCore.csproj" />
<ProjectReference Include="..\..\modules\localization-management\LINGYUN.Abp.LocalizationManagement.EntityFrameworkCore\LINGYUN.Abp.LocalizationManagement.EntityFrameworkCore.csproj" /> <ProjectReference Include="..\..\modules\localization-management\LINGYUN.Abp.LocalizationManagement.EntityFrameworkCore\LINGYUN.Abp.LocalizationManagement.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\..\modules\blob-management\LINGYUN.Abp.BlobManagement.Aliyun\LINGYUN.Abp.BlobManagement.Aliyun.csproj" /> <ProjectReference Include="..\..\modules\blob-management\LINGYUN.Abp.BlobManagement.Aliyun\LINGYUN.Abp.BlobManagement.Aliyun.csproj" />

2
aspnet-core/services/LY.MicroService.PlatformManagement.HttpApi.Host/PlatformManagementHttpApiHostModule.cs

@ -5,6 +5,7 @@ using LINGYUN.Abp.Authorization.OrganizationUnits;
using LINGYUN.Abp.BlobManagement; using LINGYUN.Abp.BlobManagement;
using LINGYUN.Abp.BlobManagement.Aliyun; using LINGYUN.Abp.BlobManagement.Aliyun;
using LINGYUN.Abp.BlobManagement.FileSystem; using LINGYUN.Abp.BlobManagement.FileSystem;
using LINGYUN.Abp.BlobManagement.MimeCheck;
using LINGYUN.Abp.BlobManagement.Minio; using LINGYUN.Abp.BlobManagement.Minio;
using LINGYUN.Abp.BlobManagement.SettingManagement; using LINGYUN.Abp.BlobManagement.SettingManagement;
using LINGYUN.Abp.BlobManagement.Tencent; using LINGYUN.Abp.BlobManagement.Tencent;
@ -71,6 +72,7 @@ namespace LY.MicroService.PlatformManagement;
typeof(AbpBlobManagementTencentModule), // 腾讯云存储提供者模块 typeof(AbpBlobManagementTencentModule), // 腾讯云存储提供者模块
typeof(AbpBlobManagementMinioModule), // Minio存储提供者模块 typeof(AbpBlobManagementMinioModule), // Minio存储提供者模块
typeof(AbpBlobManagementFileSystemModule),// 本地文件系统提供者模块 typeof(AbpBlobManagementFileSystemModule),// 本地文件系统提供者模块
typeof(AbpBlobManagementMimeCheckModule),
typeof(AbpBlobManagementApplicationModule), typeof(AbpBlobManagementApplicationModule),
typeof(AbpBlobManagementHttpApiModule), typeof(AbpBlobManagementHttpApiModule),
typeof(AbpBlobManagementSettingManagementModule), typeof(AbpBlobManagementSettingManagementModule),

Loading…
Cancel
Save