From 4de33b54c294f6d4b031b0362c69d13345c7cbd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Wed, 1 Jul 2020 12:26:55 +0300 Subject: [PATCH 1/8] Account module - Used GenerateEmbeddedFiles option --- .../Volo.Abp.Account.Application.Contracts.csproj | 7 ++++++- .../Volo.Abp.Account.Application.csproj | 7 ++++++- .../AbpAccountWebIdentityServerModule.cs | 2 +- .../Volo.Abp.Account.Web.IdentityServer.csproj | 5 +++++ .../src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj | 7 ++++++- 5 files changed, 24 insertions(+), 4 deletions(-) diff --git a/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj b/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj index 58b2266340..8b2ebba2f8 100644 --- a/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj +++ b/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj @@ -7,6 +7,7 @@ netstandard2.0 Volo.Abp.Account.Application.Contracts Volo.Abp.Account.Application.Contracts + true @@ -19,4 +20,8 @@ - + + + + + \ No newline at end of file diff --git a/modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj b/modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj index a11fb89e1a..c3a56c653d 100644 --- a/modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj +++ b/modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj @@ -7,6 +7,7 @@ netstandard2.0 Volo.Abp.Account.Application Volo.Abp.Account.Application + true @@ -16,5 +17,9 @@ - + + + + + diff --git a/modules/account/src/Volo.Abp.Account.Web.IdentityServer/AbpAccountWebIdentityServerModule.cs b/modules/account/src/Volo.Abp.Account.Web.IdentityServer/AbpAccountWebIdentityServerModule.cs index 5260554ab5..273659fd69 100644 --- a/modules/account/src/Volo.Abp.Account.Web.IdentityServer/AbpAccountWebIdentityServerModule.cs +++ b/modules/account/src/Volo.Abp.Account.Web.IdentityServer/AbpAccountWebIdentityServerModule.cs @@ -30,7 +30,7 @@ namespace Volo.Abp.Account.Web { Configure(options => { - options.FileSets.AddEmbedded("Volo.Abp.Account.Web"); + options.FileSets.AddEmbedded(); }); //TODO: Try to reuse from AbpIdentityAspNetCoreModule diff --git a/modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.csproj b/modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.csproj index ca27f60695..2d62917fcc 100644 --- a/modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.csproj +++ b/modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.csproj @@ -12,6 +12,7 @@ false false false + true Volo.Abp.Account.Web Library @@ -32,4 +33,8 @@ + + + + diff --git a/modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj b/modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj index 42918e34d4..469c17db62 100644 --- a/modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj +++ b/modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj @@ -11,6 +11,7 @@ false false false + true Volo.Abp.Account.Web true Library @@ -34,4 +35,8 @@ - + + + + + \ No newline at end of file From 47d180cf8e7b54ffb1524f62ebd087ea19b5a7a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Wed, 1 Jul 2020 12:36:11 +0300 Subject: [PATCH 2/8] Blogging module - Used GenerateEmbeddedFiles option --- .../Volo.Abp.Account.Web/AbpAccountWebModule.cs | 2 +- ....Blogging.Admin.Application.Contracts.csproj | 17 ++++++----------- .../BloggingAdminApplicationContractsModule.cs | 1 + .../BloggingAdminWebModule.cs | 2 +- .../Volo.Blogging.Admin.Web.csproj | 5 +++++ .../Volo.Blogging.Application.Contracts.csproj | 6 ++++++ .../Volo.Blogging.Domain.Shared.csproj | 7 ++++++- .../src/Volo.Blogging.Web/BloggingWebModule.cs | 2 +- .../Volo.Blogging.Web/Volo.Blogging.Web.csproj | 5 +++++ 9 files changed, 32 insertions(+), 15 deletions(-) diff --git a/modules/account/src/Volo.Abp.Account.Web/AbpAccountWebModule.cs b/modules/account/src/Volo.Abp.Account.Web/AbpAccountWebModule.cs index 6df4e43c07..10886e4c17 100644 --- a/modules/account/src/Volo.Abp.Account.Web/AbpAccountWebModule.cs +++ b/modules/account/src/Volo.Abp.Account.Web/AbpAccountWebModule.cs @@ -37,7 +37,7 @@ namespace Volo.Abp.Account.Web { Configure(options => { - options.FileSets.AddEmbedded("Volo.Abp.Account.Web"); + options.FileSets.AddEmbedded(); }); Configure(options => diff --git a/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo.Blogging.Admin.Application.Contracts.csproj b/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo.Blogging.Admin.Application.Contracts.csproj index e7f7b6a8b5..3fd2a7c98b 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo.Blogging.Admin.Application.Contracts.csproj +++ b/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo.Blogging.Admin.Application.Contracts.csproj @@ -7,6 +7,7 @@ netstandard2.0 Volo.Blogging.Admin.Application.Contracts Volo.Blogging.Admin.Application.Contracts + true @@ -16,16 +17,10 @@ - - - - - - - - - - - + + + + + diff --git a/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo/Blogging/Admin/BloggingAdminApplicationContractsModule.cs b/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo/Blogging/Admin/BloggingAdminApplicationContractsModule.cs index b2b6d000c0..fa246dc753 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo/Blogging/Admin/BloggingAdminApplicationContractsModule.cs +++ b/modules/blogging/src/Volo.Blogging.Admin.Application.Contracts/Volo/Blogging/Admin/BloggingAdminApplicationContractsModule.cs @@ -14,6 +14,7 @@ namespace Volo.Blogging.Admin { options.FileSets.AddEmbedded(); }); + Configure(options => { options.Resources diff --git a/modules/blogging/src/Volo.Blogging.Admin.Web/BloggingAdminWebModule.cs b/modules/blogging/src/Volo.Blogging.Admin.Web/BloggingAdminWebModule.cs index f62333fb02..09d6b8e3cc 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.Web/BloggingAdminWebModule.cs +++ b/modules/blogging/src/Volo.Blogging.Admin.Web/BloggingAdminWebModule.cs @@ -40,7 +40,7 @@ namespace Volo.Blogging.Admin Configure(options => { - options.FileSets.AddEmbedded("Volo.Blogging.Admin"); + options.FileSets.AddEmbedded(); }); context.Services.AddAutoMapperObjectMapper(); diff --git a/modules/blogging/src/Volo.Blogging.Admin.Web/Volo.Blogging.Admin.Web.csproj b/modules/blogging/src/Volo.Blogging.Admin.Web/Volo.Blogging.Admin.Web.csproj index fdbe0dd150..611e62b1ec 100644 --- a/modules/blogging/src/Volo.Blogging.Admin.Web/Volo.Blogging.Admin.Web.csproj +++ b/modules/blogging/src/Volo.Blogging.Admin.Web/Volo.Blogging.Admin.Web.csproj @@ -10,6 +10,7 @@ 2.8 Library true + true Volo.Blogging.Admin @@ -22,6 +23,10 @@ + + + + diff --git a/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo.Blogging.Application.Contracts.csproj b/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo.Blogging.Application.Contracts.csproj index ba9aa67e7a..80ea1db8b7 100644 --- a/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo.Blogging.Application.Contracts.csproj +++ b/modules/blogging/src/Volo.Blogging.Application.Contracts/Volo.Blogging.Application.Contracts.csproj @@ -7,6 +7,7 @@ netstandard2.0 Volo.Blogging.Application.Contracts Volo.Blogging.Application.Contracts + true @@ -19,4 +20,9 @@ + + + + + diff --git a/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo.Blogging.Domain.Shared.csproj b/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo.Blogging.Domain.Shared.csproj index da706316f9..cf9c05e3b2 100644 --- a/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo.Blogging.Domain.Shared.csproj +++ b/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo.Blogging.Domain.Shared.csproj @@ -7,6 +7,7 @@ netstandard2.0 Volo.Blogging.Domain.Shared Volo.Blogging.Domain.Shared + true @@ -18,5 +19,9 @@ - + + + + + diff --git a/modules/blogging/src/Volo.Blogging.Web/BloggingWebModule.cs b/modules/blogging/src/Volo.Blogging.Web/BloggingWebModule.cs index e238f48a37..24b92848da 100644 --- a/modules/blogging/src/Volo.Blogging.Web/BloggingWebModule.cs +++ b/modules/blogging/src/Volo.Blogging.Web/BloggingWebModule.cs @@ -39,7 +39,7 @@ namespace Volo.Blogging { Configure(options => { - options.FileSets.AddEmbedded("Volo.Blogging"); + options.FileSets.AddEmbedded(); }); context.Services.AddAutoMapperObjectMapper(); diff --git a/modules/blogging/src/Volo.Blogging.Web/Volo.Blogging.Web.csproj b/modules/blogging/src/Volo.Blogging.Web/Volo.Blogging.Web.csproj index 203c142de9..1c2ddac81f 100644 --- a/modules/blogging/src/Volo.Blogging.Web/Volo.Blogging.Web.csproj +++ b/modules/blogging/src/Volo.Blogging.Web/Volo.Blogging.Web.csproj @@ -10,6 +10,7 @@ 2.8 Library true + true Volo.Blogging @@ -22,6 +23,10 @@ + + + + From 66de7c86aaf0cd0bf6026dcc9e105de4a472a372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Wed, 1 Jul 2020 13:10:22 +0300 Subject: [PATCH 3/8] Docs module - Used GenerateEmbeddedFiles option --- .../Volo.Docs.Admin.Application.Contracts.csproj | 5 +++++ modules/docs/src/Volo.Docs.Admin.Web/DocsAdminWebModule.cs | 2 +- .../docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj | 5 +++++ modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj | 2 ++ modules/docs/src/Volo.Docs.Web/DocsWebModule.cs | 2 +- modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj | 2 ++ 6 files changed, 16 insertions(+), 2 deletions(-) diff --git a/modules/docs/src/Volo.Docs.Admin.Application.Contracts/Volo.Docs.Admin.Application.Contracts.csproj b/modules/docs/src/Volo.Docs.Admin.Application.Contracts/Volo.Docs.Admin.Application.Contracts.csproj index 16ef215c5c..72fd333456 100644 --- a/modules/docs/src/Volo.Docs.Admin.Application.Contracts/Volo.Docs.Admin.Application.Contracts.csproj +++ b/modules/docs/src/Volo.Docs.Admin.Application.Contracts/Volo.Docs.Admin.Application.Contracts.csproj @@ -7,6 +7,7 @@ netstandard2.0 Volo.Docs.Admin.Application.Contracts Volo.Docs.Admin.Application.Contracts + true @@ -20,4 +21,8 @@ + + + + diff --git a/modules/docs/src/Volo.Docs.Admin.Web/DocsAdminWebModule.cs b/modules/docs/src/Volo.Docs.Admin.Web/DocsAdminWebModule.cs index 1224b4371f..bcd9616089 100644 --- a/modules/docs/src/Volo.Docs.Admin.Web/DocsAdminWebModule.cs +++ b/modules/docs/src/Volo.Docs.Admin.Web/DocsAdminWebModule.cs @@ -39,7 +39,7 @@ namespace Volo.Docs.Admin Configure(options => { - options.FileSets.AddEmbedded("Volo.Docs.Admin"); + options.FileSets.AddEmbedded(); }); context.Services.AddAutoMapperObjectMapper(); diff --git a/modules/docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj b/modules/docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj index 5b75a24f41..48c28054ef 100644 --- a/modules/docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj +++ b/modules/docs/src/Volo.Docs.Admin.Web/Volo.Docs.Admin.Web.csproj @@ -9,6 +9,7 @@ Volo.Docs.Admin.Web Library true + true Volo.Docs.Admin 2.8 @@ -25,6 +26,10 @@ + + + + diff --git a/modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj b/modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj index 5b93ecdf8a..1042aeec0e 100644 --- a/modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj +++ b/modules/docs/src/Volo.Docs.Domain/Volo.Docs.Domain.csproj @@ -7,6 +7,7 @@ netstandard2.0 Volo.Docs.Domain Volo.Docs.Domain + true @@ -19,6 +20,7 @@ + diff --git a/modules/docs/src/Volo.Docs.Web/DocsWebModule.cs b/modules/docs/src/Volo.Docs.Web/DocsWebModule.cs index 26031f53de..8c63a71af5 100644 --- a/modules/docs/src/Volo.Docs.Web/DocsWebModule.cs +++ b/modules/docs/src/Volo.Docs.Web/DocsWebModule.cs @@ -45,7 +45,7 @@ namespace Volo.Docs { Configure(options => { - options.FileSets.AddEmbedded("Volo.Docs"); + options.FileSets.AddEmbedded(); }); var configuration = context.Services.GetConfiguration(); diff --git a/modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj b/modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj index 4479ec40af..a82e806e24 100644 --- a/modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj +++ b/modules/docs/src/Volo.Docs.Web/Volo.Docs.Web.csproj @@ -9,6 +9,7 @@ Volo.Docs.Web Library true + true Volo.Docs 2.8 @@ -23,6 +24,7 @@ + From 57451bed87df01a01ba55103114437fd12e6077e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Wed, 1 Jul 2020 13:13:48 +0300 Subject: [PATCH 4/8] FeatureManagement module - Used GenerateEmbeddedFiles option --- .../Volo.Abp.FeatureManagement.Domain.Shared.csproj | 7 ++++++- .../AbpFeatureManagementWebModule.cs | 2 +- .../Volo.Abp.FeatureManagement.Web.csproj | 5 +++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj index 5ffd761bf0..b43e2351af 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj @@ -5,6 +5,7 @@ netstandard2.0 + true @@ -12,7 +13,11 @@ - + + + + + diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/AbpFeatureManagementWebModule.cs b/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/AbpFeatureManagementWebModule.cs index da39ec3b89..5f02362b13 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/AbpFeatureManagementWebModule.cs +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/AbpFeatureManagementWebModule.cs @@ -33,7 +33,7 @@ namespace Volo.Abp.FeatureManagement { Configure(options => { - options.FileSets.AddEmbedded("Volo.Abp.FeatureManagement"); + options.FileSets.AddEmbedded(); }); context.Services.AddAutoMapperObjectMapper(); diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj b/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj index a60c57040e..666c6dccae 100644 --- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj +++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj @@ -8,6 +8,7 @@ $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; true Library + true Volo.Abp.FeatureManagement @@ -18,6 +19,10 @@ + + + + From 2678d999ed28c867b9bc8f1622ac83ff5d3266b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Wed, 1 Jul 2020 13:17:54 +0300 Subject: [PATCH 5/8] Identity module - Used GenerateEmbeddedFilesManifest --- .../Volo.Abp.Identity.Domain.Shared.csproj | 5 +++++ .../src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs | 2 +- .../src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj index 0af270c597..45b89b023e 100644 --- a/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj @@ -11,6 +11,7 @@ false false false + true @@ -24,4 +25,8 @@ + + + + diff --git a/modules/identity/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs b/modules/identity/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs index 8d2ba91695..79b636418c 100644 --- a/modules/identity/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs +++ b/modules/identity/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs @@ -42,7 +42,7 @@ namespace Volo.Abp.Identity.Web Configure(options => { - options.FileSets.AddEmbedded("Volo.Abp.Identity.Web"); + options.FileSets.AddEmbedded(); }); context.Services.AddAutoMapperObjectMapper(); diff --git a/modules/identity/src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj b/modules/identity/src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj index 5a8367dc5f..ae1d1b6ce7 100644 --- a/modules/identity/src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj @@ -11,6 +11,7 @@ false false false + true Library true @@ -38,4 +39,8 @@ + + + + From 89ed1c644c9ad6c7382aa28a0b5c24dfb8a5df09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Wed, 1 Jul 2020 13:21:55 +0300 Subject: [PATCH 6/8] PermissionManagement module - Used GenerateEmbeddedFilesManifest --- .../Volo.Abp.PermissionManagement.Domain.Shared.csproj | 5 +++++ .../AbpPermissionManagementWebModule.cs | 2 +- .../Volo.Abp.PermissionManagement.Web.csproj | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj index 629d9f1742..53009938cf 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj @@ -11,6 +11,7 @@ false false false + true @@ -23,4 +24,8 @@ + + + + diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/AbpPermissionManagementWebModule.cs b/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/AbpPermissionManagementWebModule.cs index c7f4e08480..88e1e027ae 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/AbpPermissionManagementWebModule.cs +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/AbpPermissionManagementWebModule.cs @@ -31,7 +31,7 @@ namespace Volo.Abp.PermissionManagement.Web { Configure(options => { - options.FileSets.AddEmbedded("Volo.Abp.PermissionManagement.Web"); + options.FileSets.AddEmbedded(); }); context.Services.AddAutoMapperObjectMapper(); diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj index 3209ee2e20..0732dd121a 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj @@ -10,6 +10,7 @@ $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; Library true + true @@ -26,4 +27,8 @@ + + + + From 839a0da7e8989e2e62ef75244d96622da394ca6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Wed, 1 Jul 2020 13:26:53 +0300 Subject: [PATCH 7/8] Setting Management module - Used GenerateEmbeddedFilesManifest --- .../Volo.Abp.SettingManagement.Domain.Shared.csproj | 5 +++++ .../AbpSettingManagementWebModule.cs | 2 +- .../Volo.Abp.SettingManagement.Web.csproj | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj index 406ef82aba..64a60969bb 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj @@ -11,6 +11,7 @@ false false false + true @@ -19,6 +20,10 @@ + + + + diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Web/AbpSettingManagementWebModule.cs b/modules/setting-management/src/Volo.Abp.SettingManagement.Web/AbpSettingManagementWebModule.cs index 3e0cd0a7f1..a7915b06a2 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Web/AbpSettingManagementWebModule.cs +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Web/AbpSettingManagementWebModule.cs @@ -30,7 +30,7 @@ namespace Volo.Abp.SettingManagement.Web Configure(options => { - options.FileSets.AddEmbedded("Volo.Abp.SettingManagement.Web"); + options.FileSets.AddEmbedded(); }); } } diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj b/modules/setting-management/src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj index a0197c0686..f88aac942a 100644 --- a/modules/setting-management/src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj +++ b/modules/setting-management/src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj @@ -11,6 +11,7 @@ false false false + true @@ -19,6 +20,10 @@ + + + + From da597ace91e548e7dbed3c00e6049495c3de1254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87otur?= Date: Wed, 1 Jul 2020 13:29:18 +0300 Subject: [PATCH 8/8] TenantManagement module - Used GenerateEmbeddedFilesManifest --- .../Volo.Abp.TenantManagement.Domain.Shared.csproj | 5 +++++ .../AbpTenantManagementWebModule.cs | 2 +- .../Volo.Abp.TenantManagement.Web.csproj | 7 ++++++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared/Volo.Abp.TenantManagement.Domain.Shared.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared/Volo.Abp.TenantManagement.Domain.Shared.csproj index 925834d1f6..9db53f84e6 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared/Volo.Abp.TenantManagement.Domain.Shared.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Domain.Shared/Volo.Abp.TenantManagement.Domain.Shared.csproj @@ -11,6 +11,7 @@ false false false + true @@ -23,4 +24,8 @@ + + + + diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/AbpTenantManagementWebModule.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/AbpTenantManagementWebModule.cs index 0094b7d5ad..af6412b465 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/AbpTenantManagementWebModule.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/AbpTenantManagementWebModule.cs @@ -40,7 +40,7 @@ namespace Volo.Abp.TenantManagement.Web Configure(options => { - options.FileSets.AddEmbedded("Volo.Abp.TenantManagement.Web"); + options.FileSets.AddEmbedded(); }); context.Services.AddAutoMapperObjectMapper(); diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Volo.Abp.TenantManagement.Web.csproj b/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Volo.Abp.TenantManagement.Web.csproj index 71ec4cc04a..4862fba7c2 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Volo.Abp.TenantManagement.Web.csproj +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Web/Volo.Abp.TenantManagement.Web.csproj @@ -10,6 +10,7 @@ true $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; Library + true @@ -28,5 +29,9 @@ - + + + + +