From 41d6eb928c3bd2f49a8b80cc4440312aca601f51 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 27 Apr 2021 15:21:03 +0300 Subject: [PATCH 1/8] Setup sln/module files and structure for Identity Server https://github.com/volosoft/volo/issues/6471 --- .../Volo.Abp.IdentityServer.abpmdl.json | 76 +++++++++++++++++++ .../Volo.Abp.IdentityServer.abpsln.json | 7 ++ 2 files changed, 83 insertions(+) create mode 100644 modules/identityserver/Volo.Abp.IdentityServer.abpmdl.json create mode 100644 modules/identityserver/Volo.Abp.IdentityServer.abpsln.json diff --git a/modules/identityserver/Volo.Abp.IdentityServer.abpmdl.json b/modules/identityserver/Volo.Abp.IdentityServer.abpmdl.json new file mode 100644 index 0000000000..b56f99933a --- /dev/null +++ b/modules/identityserver/Volo.Abp.IdentityServer.abpmdl.json @@ -0,0 +1,76 @@ +{ + "folders": { + "src": {}, + "test": {} + }, + "imports": { + "Volo.Abp.Identity": { + "path": "../identity/Volo.Abp.Identity.abpmdl.json" + }, + "Volo.Abp.PermissionManagement": { + "path": "../permission-management/Volo.Abp.PermissionManagement.abpmdl.json" + } + }, + "packages": { + "Volo.Abp.IdentityServer.Domain.Shared": { + "path": "src/Volo.Abp.IdentityServer.Domain.Shared/Volo.Abp.IdentityServer.Domain.Shared.csproj", + "folder": "src", + "includes": { + "lib.domain.shared": {} + } + }, + "Volo.Abp.IdentityServer.Domain": { + "path": "src/Volo.Abp.IdentityServer.Domain/Volo.Abp.IdentityServer.Domain.csproj", + "folder": "src", + "includes": { + "lib.domain": {} + } + }, + "Volo.Abp.IdentityServer.EntityFrameworkCore": { + "path": "src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo.Abp.IdentityServer.EntityFrameworkCore.csproj", + "folder": "src", + "includes": { + "lib.ef": {} + } + }, + "Volo.Abp.IdentityServer.MongoDB": { + "path": "src/Volo.Abp.IdentityServer.MongoDB/Volo.Abp.IdentityServer.MongoDB.csproj", + "folder": "src", + "includes": { + "lib.mongodb": {} + } + }, + "Volo.Abp.PermissionManagement.Domain.IdentityServer": { + "path": "src/Volo.Abp.PermissionManagement.Domain.IdentityServer/Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj", + "folder": "src" + }, + "Volo.Abp.IdentityServer.TestBase": { + "path": "test/Volo.Abp.IdentityServer.TestBase/Volo.Abp.IdentityServer.TestBase.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.IdentityServer.Domain.Tests": { + "path": "test/Volo.Abp.IdentityServer.Domain.Tests/Volo.Abp.IdentityServer.Domain.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.IdentityServer.EntityFrameworkCore.Tests": { + "path": "test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.IdentityServer.MongoDB.Tests": { + "path": "test/Volo.Abp.IdentityServer.MongoDB.Tests/Volo.Abp.IdentityServer.MongoDB.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + } + } +} \ No newline at end of file diff --git a/modules/identityserver/Volo.Abp.IdentityServer.abpsln.json b/modules/identityserver/Volo.Abp.IdentityServer.abpsln.json new file mode 100644 index 0000000000..da8058be48 --- /dev/null +++ b/modules/identityserver/Volo.Abp.IdentityServer.abpsln.json @@ -0,0 +1,7 @@ +{ + "modules": { + "Volo.Abp.IdentityServer": { + "path": "Volo.Abp.IdentityServer.abpmdl.json" + } + } +} \ No newline at end of file From 58ddef5256c8f980b656a68e94d9d182732de0e8 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 27 Apr 2021 15:28:52 +0300 Subject: [PATCH 2/8] Setup sln/module files and structure for PermissionManagement https://github.com/volosoft/volo/issues/6471 --- .../Volo.Abp.PermissionManagement.abpmdl.json | 127 ++++++++++++++++++ .../Volo.Abp.PermissionManagement.abpsln.json | 7 + 2 files changed, 134 insertions(+) create mode 100644 modules/permission-management/Volo.Abp.PermissionManagement.abpmdl.json create mode 100644 modules/permission-management/Volo.Abp.PermissionManagement.abpsln.json diff --git a/modules/permission-management/Volo.Abp.PermissionManagement.abpmdl.json b/modules/permission-management/Volo.Abp.PermissionManagement.abpmdl.json new file mode 100644 index 0000000000..b0c0b4ebb7 --- /dev/null +++ b/modules/permission-management/Volo.Abp.PermissionManagement.abpmdl.json @@ -0,0 +1,127 @@ +{ + "folders": { + "src": {}, + "test": {} + }, + "packages": { + "Volo.Abp.PermissionManagement.Domain.Shared": { + "path": "src/Volo.Abp.PermissionManagement.Domain.Shared/Volo.Abp.PermissionManagement.Domain.Shared.csproj", + "folder": "src", + "includes": { + "lib.domain.shared": {} + } + }, + "Volo.Abp.PermissionManagement.Domain": { + "path": "src/Volo.Abp.PermissionManagement.Domain/Volo.Abp.PermissionManagement.Domain.csproj", + "folder": "src", + "includes": { + "lib.domain": {} + } + }, + "Volo.Abp.PermissionManagement.Application.Contracts": { + "path": "src/Volo.Abp.PermissionManagement.Application.Contracts/Volo.Abp.PermissionManagement.Application.Contracts.csproj", + "folder": "src", + "includes": { + "lib.application.contracts": {} + } + }, + "Volo.Abp.PermissionManagement.Application": { + "path": "src/Volo.Abp.PermissionManagement.Application/Volo.Abp.PermissionManagement.Application.csproj", + "folder": "src", + "includes": { + "lib.application": {} + } + }, + "Volo.Abp.PermissionManagement.EntityFrameworkCore": { + "path": "src/Volo.Abp.PermissionManagement.EntityFrameworkCore/Volo.Abp.PermissionManagement.EntityFrameworkCore.csproj", + "folder": "src", + "includes": { + "lib.ef": {} + } + }, + "Volo.Abp.PermissionManagement.MongoDB": { + "path": "src/Volo.Abp.PermissionManagement.MongoDB/Volo.Abp.PermissionManagement.MongoDB.csproj", + "folder": "src", + "includes": { + "lib.mongodb": {} + } + }, + "Volo.Abp.PermissionManagement.HttpApi": { + "path": "src/Volo.Abp.PermissionManagement.HttpApi/Volo.Abp.PermissionManagement.HttpApi.csproj", + "folder": "src", + "includes": { + "lib.http-api": {} + } + }, + "Volo.Abp.PermissionManagement.HttpApi.Client": { + "path": "src/Volo.Abp.PermissionManagement.HttpApi.Client/Volo.Abp.PermissionManagement.HttpApi.Client.csproj", + "folder": "src", + "includes": { + "lib.http-api-client": {} + } + }, + "Volo.Abp.PermissionManagement.Web": { + "path": "src/Volo.Abp.PermissionManagement.Web/Volo.Abp.PermissionManagement.Web.csproj", + "folder": "src", + "includes": { + "lib.ui.mvc": {} + } + }, + "Volo.Abp.PermissionManagement.Blazor": { + "path": "src/Volo.Abp.PermissionManagement.Blazor/Volo.Abp.PermissionManagement.Blazor.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor": {} + } + }, + "Volo.Abp.PermissionManagement.Blazor.Server": { + "path": "src/Volo.Abp.PermissionManagement.Blazor.Server/Volo.Abp.PermissionManagement.Blazor.Server.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor-server": {} + } + }, + "Volo.Abp.PermissionManagement.Blazor.WebAssembly": { + "path": "src/Volo.Abp.PermissionManagement.Blazor.WebAssembly/Volo.Abp.PermissionManagement.Blazor.WebAssembly.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor-wasm": {} + } + }, + "Volo.Abp.PermissionManagement.TestBase": { + "path": "test/Volo.Abp.PermissionManagement.TestBase/Volo.Abp.PermissionManagement.TestBase.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.PermissionManagement.Domain.Tests": { + "path": "test/Volo.Abp.PermissionManagement.Domain.Tests/Volo.Abp.PermissionManagement.Domain.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests": { + "path": "test/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests/Volo.Abp.PermissionManagement.EntityFrameworkCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.PermissionManagement.MongoDB.Tests": { + "path": "test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo.Abp.PermissionManagement.MongoDB.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.PermissionManagement.Application.Tests": { + "path": "test/Volo.Abp.PermissionManagement.Application.Tests/Volo.Abp.PermissionManagement.Application.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + } + } +} \ No newline at end of file diff --git a/modules/permission-management/Volo.Abp.PermissionManagement.abpsln.json b/modules/permission-management/Volo.Abp.PermissionManagement.abpsln.json new file mode 100644 index 0000000000..de624a3cc3 --- /dev/null +++ b/modules/permission-management/Volo.Abp.PermissionManagement.abpsln.json @@ -0,0 +1,7 @@ +{ + "modules": { + "Volo.Abp.PermissionManagement": { + "path": "Volo.Abp.PermissionManagement.abpmdl.json" + } + } +} \ No newline at end of file From 7073c3468699c6dc27816deb23189a653e68812f Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 27 Apr 2021 15:40:36 +0300 Subject: [PATCH 3/8] Setup sln/module files and structure for FeatureManagement https://github.com/volosoft/volo/issues/6471 --- .../Volo.Abp.FeatureManagement.abpmdl.json | 127 ++++++++++++++++++ .../Volo.Abp.FeatureManagement.abpsln.json | 7 + .../Volo.Abp.FeatureManagement.sln | 2 +- 3 files changed, 135 insertions(+), 1 deletion(-) create mode 100644 modules/feature-management/Volo.Abp.FeatureManagement.abpmdl.json create mode 100644 modules/feature-management/Volo.Abp.FeatureManagement.abpsln.json diff --git a/modules/feature-management/Volo.Abp.FeatureManagement.abpmdl.json b/modules/feature-management/Volo.Abp.FeatureManagement.abpmdl.json new file mode 100644 index 0000000000..a30f5efe72 --- /dev/null +++ b/modules/feature-management/Volo.Abp.FeatureManagement.abpmdl.json @@ -0,0 +1,127 @@ +{ + "folders": { + "src": {}, + "test": {} + }, + "packages": { + "Volo.Abp.FeatureManagement.Domain.Shared": { + "path": "src/Volo.Abp.FeatureManagement.Domain.Shared/Volo.Abp.FeatureManagement.Domain.Shared.csproj", + "folder": "src", + "includes": { + "lib.domain.shared": {} + } + }, + "Volo.Abp.FeatureManagement.Domain": { + "path": "src/Volo.Abp.FeatureManagement.Domain/Volo.Abp.FeatureManagement.Domain.csproj", + "folder": "src", + "includes": { + "lib.domain": {} + } + }, + "Volo.Abp.FeatureManagement.Application.Contracts": { + "path": "src/Volo.Abp.FeatureManagement.Application.Contracts/Volo.Abp.FeatureManagement.Application.Contracts.csproj", + "folder": "src", + "includes": { + "lib.application.contracts": {} + } + }, + "Volo.Abp.FeatureManagement.Application": { + "path": "src/Volo.Abp.FeatureManagement.Application/Volo.Abp.FeatureManagement.Application.csproj", + "folder": "src", + "includes": { + "lib.application": {} + } + }, + "Volo.Abp.FeatureManagement.EntityFrameworkCore": { + "path": "src/Volo.Abp.FeatureManagement.EntityFrameworkCore/Volo.Abp.FeatureManagement.EntityFrameworkCore.csproj", + "folder": "src", + "includes": { + "lib.ef": {} + } + }, + "Volo.Abp.FeatureManagement.MongoDB": { + "path": "src/Volo.Abp.FeatureManagement.MongoDB/Volo.Abp.FeatureManagement.MongoDB.csproj", + "folder": "src", + "includes": { + "lib.mongodb": {} + } + }, + "Volo.Abp.FeatureManagement.HttpApi": { + "path": "src/Volo.Abp.FeatureManagement.HttpApi/Volo.Abp.FeatureManagement.HttpApi.csproj", + "folder": "src", + "includes": { + "lib.http-api": {} + } + }, + "Volo.Abp.FeatureManagement.HttpApi.Client": { + "path": "src/Volo.Abp.FeatureManagement.HttpApi.Client/Volo.Abp.FeatureManagement.HttpApi.Client.csproj", + "folder": "src", + "includes": { + "lib.http-api-client": {} + } + }, + "Volo.Abp.FeatureManagement.Web": { + "path": "src/Volo.Abp.FeatureManagement.Web/Volo.Abp.FeatureManagement.Web.csproj", + "folder": "src", + "includes": { + "lib.ui.mvc": {} + } + }, + "Volo.Abp.FeatureManagement.Blazor": { + "path": "src/Volo.Abp.FeatureManagement.Blazor/Volo.Abp.FeatureManagement.Blazor.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor": {} + } + }, + "Volo.Abp.FeatureManagement.Blazor.Server": { + "path": "src/Volo.Abp.FeatureManagement.Blazor.Server/Volo.Abp.FeatureManagement.Blazor.Server.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor-server": {} + } + }, + "Volo.Abp.FeatureManagement.Blazor.WebAssembly": { + "path": "src/Volo.Abp.FeatureManagement.Blazor.WebAssembly/Volo.Abp.FeatureManagement.Blazor.WebAssembly.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor-wasm": {} + } + }, + "Volo.Abp.FeatureManagement.TestBase": { + "path": "test/Volo.Abp.FeatureManagement.TestBase/Volo.Abp.FeatureManagement.TestBase.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.FeatureManagement.Domain.Tests": { + "path": "test/Volo.Abp.FeatureManagement.Domain.Tests/Volo.Abp.FeatureManagement.Domain.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests": { + "path": "test/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests/Volo.Abp.FeatureManagement.EntityFrameworkCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.FeatureManagement.MongoDB.Tests": { + "path": "test/Volo.Abp.FeatureManagement.MongoDB.Tests/Volo.Abp.FeatureManagement.MongoDB.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.FeatureManagement.Application.Tests": { + "path": "test/Volo.Abp.FeatureManagement.Application.Tests/Volo.Abp.FeatureManagement.Application.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + } + } +} \ No newline at end of file diff --git a/modules/feature-management/Volo.Abp.FeatureManagement.abpsln.json b/modules/feature-management/Volo.Abp.FeatureManagement.abpsln.json new file mode 100644 index 0000000000..2da30a89cf --- /dev/null +++ b/modules/feature-management/Volo.Abp.FeatureManagement.abpsln.json @@ -0,0 +1,7 @@ +{ + "modules": { + "Volo.Abp.FeatureManagement": { + "path": "Volo.Abp.FeatureManagement.abpmdl.json" + } + } +} \ No newline at end of file diff --git a/modules/feature-management/Volo.Abp.FeatureManagement.sln b/modules/feature-management/Volo.Abp.FeatureManagement.sln index 31dfe377fd..11e32bd6e7 100644 --- a/modules/feature-management/Volo.Abp.FeatureManagement.sln +++ b/modules/feature-management/Volo.Abp.FeatureManagement.sln @@ -13,7 +13,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.Abp.FeatureManagement. EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{649A3FFA-182F-4E56-9717-E6A9A2BEC545}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{CCD2960C-23CC-4AB4-B84D-60C7AAA52F4D}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{CCD2960C-23CC-4AB4-B84D-60C7AAA52F4D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.Abp.FeatureManagement.EntityFrameworkCore", "src\Volo.Abp.FeatureManagement.EntityFrameworkCore\Volo.Abp.FeatureManagement.EntityFrameworkCore.csproj", "{0CE86223-D31D-4315-A1F5-87BA3EE1B844}" EndProject From 6a7f6791eea5dd5f470e291c7f05b919db33b4a0 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 27 Apr 2021 15:46:01 +0300 Subject: [PATCH 4/8] Setup sln/module files and structure for SettingManagement https://github.com/volosoft/volo/issues/6471 --- .../Volo.Abp.SettingManagement.abpmdl.json | 120 ++++++++++++++++++ .../Volo.Abp.SettingManagement.abpsln.json | 7 + 2 files changed, 127 insertions(+) create mode 100644 modules/setting-management/Volo.Abp.SettingManagement.abpmdl.json create mode 100644 modules/setting-management/Volo.Abp.SettingManagement.abpsln.json diff --git a/modules/setting-management/Volo.Abp.SettingManagement.abpmdl.json b/modules/setting-management/Volo.Abp.SettingManagement.abpmdl.json new file mode 100644 index 0000000000..8c46a6e9fd --- /dev/null +++ b/modules/setting-management/Volo.Abp.SettingManagement.abpmdl.json @@ -0,0 +1,120 @@ +{ + "folders": { + "src": {}, + "test": {} + }, + "packages": { + "Volo.Abp.SettingManagement.Domain.Shared": { + "path": "src/Volo.Abp.SettingManagement.Domain.Shared/Volo.Abp.SettingManagement.Domain.Shared.csproj", + "folder": "src", + "includes": { + "lib.domain.shared": {} + } + }, + "Volo.Abp.SettingManagement.Domain": { + "path": "src/Volo.Abp.SettingManagement.Domain/Volo.Abp.SettingManagement.Domain.csproj", + "folder": "src", + "includes": { + "lib.domain": {} + } + }, + "Volo.Abp.SettingManagement.Application.Contracts": { + "path": "src/Volo.Abp.SettingManagement.Application.Contracts/Volo.Abp.SettingManagement.Application.Contracts.csproj", + "folder": "src", + "includes": { + "lib.application.contracts": {} + } + }, + "Volo.Abp.SettingManagement.Application": { + "path": "src/Volo.Abp.SettingManagement.Application/Volo.Abp.SettingManagement.Application.csproj", + "folder": "src", + "includes": { + "lib.application": {} + } + }, + "Volo.Abp.SettingManagement.EntityFrameworkCore": { + "path": "src/Volo.Abp.SettingManagement.EntityFrameworkCore/Volo.Abp.SettingManagement.EntityFrameworkCore.csproj", + "folder": "src", + "includes": { + "lib.ef": {} + } + }, + "Volo.Abp.SettingManagement.MongoDB": { + "path": "src/Volo.Abp.SettingManagement.MongoDB/Volo.Abp.SettingManagement.MongoDB.csproj", + "folder": "src", + "includes": { + "lib.mongodb": {} + } + }, + "Volo.Abp.SettingManagement.HttpApi": { + "path": "src/Volo.Abp.SettingManagement.HttpApi/Volo.Abp.SettingManagement.HttpApi.csproj", + "folder": "src", + "includes": { + "lib.http-api": {} + } + }, + "Volo.Abp.SettingManagement.HttpApi.Client": { + "path": "src/Volo.Abp.SettingManagement.HttpApi.Client/Volo.Abp.SettingManagement.HttpApi.Client.csproj", + "folder": "src", + "includes": { + "lib.http-api-client": {} + } + }, + "Volo.Abp.SettingManagement.Web": { + "path": "src/Volo.Abp.SettingManagement.Web/Volo.Abp.SettingManagement.Web.csproj", + "folder": "src", + "includes": { + "lib.ui.mvc": {} + } + }, + "Volo.Abp.SettingManagement.Blazor": { + "path": "src/Volo.Abp.SettingManagement.Blazor/Volo.Abp.SettingManagement.Blazor.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor": {} + } + }, + "Volo.Abp.SettingManagement.Blazor.Server": { + "path": "src/Volo.Abp.SettingManagement.Blazor.Server/Volo.Abp.SettingManagement.Blazor.Server.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor-server": {} + } + }, + "Volo.Abp.SettingManagement.Blazor.WebAssembly": { + "path": "src/Volo.Abp.SettingManagement.Blazor.WebAssembly/Volo.Abp.SettingManagement.Blazor.WebAssembly.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor-wasm": {} + } + }, + "Volo.Abp.SettingManagement.TestBase": { + "path": "test/Volo.Abp.SettingManagement.TestBase/Volo.Abp.SettingManagement.TestBase.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.SettingManagement.Domain.Tests": { + "path": "test/Volo.Abp.SettingManagement.Domain.Tests/Volo.Abp.SettingManagement.Domain.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.SettingManagement.EntityFrameworkCore.Tests": { + "path": "test/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests/Volo.Abp.SettingManagement.EntityFrameworkCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.SettingManagement.MongoDB.Tests": { + "path": "test/Volo.Abp.SettingManagement.MongoDB.Tests/Volo.Abp.SettingManagement.MongoDB.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + } + } +} \ No newline at end of file diff --git a/modules/setting-management/Volo.Abp.SettingManagement.abpsln.json b/modules/setting-management/Volo.Abp.SettingManagement.abpsln.json new file mode 100644 index 0000000000..8a4c4414fc --- /dev/null +++ b/modules/setting-management/Volo.Abp.SettingManagement.abpsln.json @@ -0,0 +1,7 @@ +{ + "modules": { + "Volo.Abp.SettingManagement": { + "path": "Volo.Abp.SettingManagement.abpmdl.json" + } + } +} \ No newline at end of file From f960fe92bffc47fc3f4787b8d0567f236fdedef2 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 27 Apr 2021 15:54:35 +0300 Subject: [PATCH 5/8] Fix Volo.Abp.SettingManagement.abpmdl.json --- .../setting-management/Volo.Abp.SettingManagement.abpmdl.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/setting-management/Volo.Abp.SettingManagement.abpmdl.json b/modules/setting-management/Volo.Abp.SettingManagement.abpmdl.json index 8c46a6e9fd..8181f78b91 100644 --- a/modules/setting-management/Volo.Abp.SettingManagement.abpmdl.json +++ b/modules/setting-management/Volo.Abp.SettingManagement.abpmdl.json @@ -95,8 +95,8 @@ "lib.test": {} } }, - "Volo.Abp.SettingManagement.Domain.Tests": { - "path": "test/Volo.Abp.SettingManagement.Domain.Tests/Volo.Abp.SettingManagement.Domain.Tests.csproj", + "Volo.Abp.SettingManagement.Tests": { + "path": "test/Volo.Abp.SettingManagement.Tests/Volo.Abp.SettingManagement.Tests.csproj", "folder": "test", "includes": { "lib.test": {} From 678c948b0ae44058a4636106dd86ce0cf5b6025d Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 27 Apr 2021 15:55:19 +0300 Subject: [PATCH 6/8] Setup sln/module files and structure for AuditLogging https://github.com/volosoft/volo/issues/6471 --- .../Volo.Abp.AuditLogging.abpmdl.json | 64 +++++++++++++++++++ .../Volo.Abp.AuditLogging.abpsln.json | 7 ++ 2 files changed, 71 insertions(+) create mode 100644 modules/audit-logging/Volo.Abp.AuditLogging.abpmdl.json create mode 100644 modules/audit-logging/Volo.Abp.AuditLogging.abpsln.json diff --git a/modules/audit-logging/Volo.Abp.AuditLogging.abpmdl.json b/modules/audit-logging/Volo.Abp.AuditLogging.abpmdl.json new file mode 100644 index 0000000000..a21497b1cb --- /dev/null +++ b/modules/audit-logging/Volo.Abp.AuditLogging.abpmdl.json @@ -0,0 +1,64 @@ +{ + "folders": { + "src": {}, + "test": {} + }, + "packages": { + "Volo.Abp.AuditLogging.Domain.Shared": { + "path": "src/Volo.Abp.AuditLogging.Domain.Shared/Volo.Abp.AuditLogging.Domain.Shared.csproj", + "folder": "src", + "includes": { + "lib.domain.shared": {} + } + }, + "Volo.Abp.AuditLogging.Domain": { + "path": "src/Volo.Abp.AuditLogging.Domain/Volo.Abp.AuditLogging.Domain.csproj", + "folder": "src", + "includes": { + "lib.domain": {} + } + }, + "Volo.Abp.AuditLogging.EntityFrameworkCore": { + "path": "src/Volo.Abp.AuditLogging.EntityFrameworkCore/Volo.Abp.AuditLogging.EntityFrameworkCore.csproj", + "folder": "src", + "includes": { + "lib.ef": {} + } + }, + "Volo.Abp.AuditLogging.MongoDB": { + "path": "src/Volo.Abp.AuditLogging.MongoDB/Volo.Abp.AuditLogging.MongoDB.csproj", + "folder": "src", + "includes": { + "lib.mongodb": {} + } + }, + "Volo.Abp.AuditLogging.TestBase": { + "path": "test/Volo.Abp.AuditLogging.TestBase/Volo.Abp.AuditLogging.TestBase.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.AuditLogging.Tests": { + "path": "test/Volo.Abp.AuditLogging.Tests/Volo.Abp.AuditLogging.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.AuditLogging.EntityFrameworkCore.Tests": { + "path": "test/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests/Volo.Abp.AuditLogging.EntityFrameworkCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.AuditLogging.MongoDB.Tests": { + "path": "test/Volo.Abp.AuditLogging.MongoDB.Tests/Volo.Abp.AuditLogging.MongoDB.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + } + } +} \ No newline at end of file diff --git a/modules/audit-logging/Volo.Abp.AuditLogging.abpsln.json b/modules/audit-logging/Volo.Abp.AuditLogging.abpsln.json new file mode 100644 index 0000000000..380c46c413 --- /dev/null +++ b/modules/audit-logging/Volo.Abp.AuditLogging.abpsln.json @@ -0,0 +1,7 @@ +{ + "modules": { + "Volo.Abp.AuditLogging": { + "path": "Volo.Abp.AuditLogging.abpmdl.json" + } + } +} \ No newline at end of file From da154489cec0e164262c2ae0c0c70ad9eefb9e89 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 27 Apr 2021 16:03:19 +0300 Subject: [PATCH 7/8] Setup sln/module files and structure for BackgroundJobs https://github.com/volosoft/volo/issues/6471 --- .../Volo.Abp.BackgroundJobs.abpmdl.json | 64 +++++++++++++++++++ .../Volo.Abp.BackgroundJobs.abpsln.json | 7 ++ .../Volo.Abp.BackgroundJobs.sln | 2 +- 3 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 modules/background-jobs/Volo.Abp.BackgroundJobs.abpmdl.json create mode 100644 modules/background-jobs/Volo.Abp.BackgroundJobs.abpsln.json diff --git a/modules/background-jobs/Volo.Abp.BackgroundJobs.abpmdl.json b/modules/background-jobs/Volo.Abp.BackgroundJobs.abpmdl.json new file mode 100644 index 0000000000..da2cab8b84 --- /dev/null +++ b/modules/background-jobs/Volo.Abp.BackgroundJobs.abpmdl.json @@ -0,0 +1,64 @@ +{ + "folders": { + "src": {}, + "test": {} + }, + "packages": { + "Volo.Abp.BackgroundJobs.Domain.Shared": { + "path": "src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo.Abp.BackgroundJobs.Domain.Shared.csproj", + "folder": "src", + "includes": { + "lib.domain.shared": {} + } + }, + "Volo.Abp.BackgroundJobs.Domain": { + "path": "src/Volo.Abp.BackgroundJobs.Domain/Volo.Abp.BackgroundJobs.Domain.csproj", + "folder": "src", + "includes": { + "lib.domain": {} + } + }, + "Volo.Abp.BackgroundJobs.EntityFrameworkCore": { + "path": "src/Volo.Abp.BackgroundJobs.EntityFrameworkCore/Volo.Abp.BackgroundJobs.EntityFrameworkCore.csproj", + "folder": "src", + "includes": { + "lib.ef": {} + } + }, + "Volo.Abp.BackgroundJobs.MongoDB": { + "path": "src/Volo.Abp.BackgroundJobs.MongoDB/Volo.Abp.BackgroundJobs.MongoDB.csproj", + "folder": "src", + "includes": { + "lib.mongodb": {} + } + }, + "Volo.Abp.BackgroundJobs.TestBase": { + "path": "test/Volo.Abp.BackgroundJobs.TestBase/Volo.Abp.BackgroundJobs.TestBase.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.BackgroundJobs.Domain.Tests": { + "path": "test/Volo.Abp.BackgroundJobs.Domain.Tests/Volo.Abp.BackgroundJobs.Domain.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests": { + "path": "test/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests/Volo.Abp.BackgroundJobs.EntityFrameworkCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.BackgroundJobs.MongoDB.Tests": { + "path": "test/Volo.Abp.BackgroundJobs.MongoDB.Tests/Volo.Abp.BackgroundJobs.MongoDB.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + } + } +} \ No newline at end of file diff --git a/modules/background-jobs/Volo.Abp.BackgroundJobs.abpsln.json b/modules/background-jobs/Volo.Abp.BackgroundJobs.abpsln.json new file mode 100644 index 0000000000..08b606ec39 --- /dev/null +++ b/modules/background-jobs/Volo.Abp.BackgroundJobs.abpsln.json @@ -0,0 +1,7 @@ +{ + "modules": { + "Volo.Abp.BackgroundJobs": { + "path": "Volo.Abp.BackgroundJobs.abpmdl.json" + } + } +} \ No newline at end of file diff --git a/modules/background-jobs/Volo.Abp.BackgroundJobs.sln b/modules/background-jobs/Volo.Abp.BackgroundJobs.sln index 83263fa296..771eb08b19 100644 --- a/modules/background-jobs/Volo.Abp.BackgroundJobs.sln +++ b/modules/background-jobs/Volo.Abp.BackgroundJobs.sln @@ -9,7 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.Abp.BackgroundJobs.Dom EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{649A3FFA-182F-4E56-9717-E6A9A2BEC545}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{CCD2960C-23CC-4AB4-B84D-60C7AAA52F4D}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{CCD2960C-23CC-4AB4-B84D-60C7AAA52F4D}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "app", "app", "{E400416D-2895-4512-9D17-90681EEC7E0A}" EndProject From 8a93fdcfc914daa1c1a73551d9b33317532ae2e1 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 27 Apr 2021 16:09:07 +0300 Subject: [PATCH 8/8] Setup sln/module files and structure for BlobStoring Database https://github.com/volosoft/volo/issues/6471 --- .../Volo.Abp.BlobStoring.Database.abpmdl.json | 64 +++++++++++++++++++ .../Volo.Abp.BlobStoring.Database.abpsln.json | 7 ++ 2 files changed, 71 insertions(+) create mode 100644 modules/blob-storing-database/Volo.Abp.BlobStoring.Database.abpmdl.json create mode 100644 modules/blob-storing-database/Volo.Abp.BlobStoring.Database.abpsln.json diff --git a/modules/blob-storing-database/Volo.Abp.BlobStoring.Database.abpmdl.json b/modules/blob-storing-database/Volo.Abp.BlobStoring.Database.abpmdl.json new file mode 100644 index 0000000000..2d5e84ad96 --- /dev/null +++ b/modules/blob-storing-database/Volo.Abp.BlobStoring.Database.abpmdl.json @@ -0,0 +1,64 @@ +{ + "folders": { + "src": {}, + "test": {} + }, + "packages": { + "Volo.Abp.BlobStoring.Database.Domain.Shared": { + "path": "src/Volo.Abp.BlobStoring.Database.Domain.Shared/Volo.Abp.BlobStoring.Database.Domain.Shared.csproj", + "folder": "src", + "includes": { + "lib.domain.shared": {} + } + }, + "Volo.Abp.BlobStoring.Database.Domain": { + "path": "src/Volo.Abp.BlobStoring.Database.Domain/Volo.Abp.BlobStoring.Database.Domain.csproj", + "folder": "src", + "includes": { + "lib.domain": {} + } + }, + "Volo.Abp.BlobStoring.Database.EntityFrameworkCore": { + "path": "src/Volo.Abp.BlobStoring.Database.EntityFrameworkCore/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.csproj", + "folder": "src", + "includes": { + "lib.ef": {} + } + }, + "Volo.Abp.BlobStoring.Database.MongoDB": { + "path": "src/Volo.Abp.BlobStoring.Database.MongoDB/Volo.Abp.BlobStoring.Database.MongoDB.csproj", + "folder": "src", + "includes": { + "lib.mongodb": {} + } + }, + "Volo.Abp.BlobStoring.Database.TestBase": { + "path": "test/Volo.Abp.BlobStoring.Database.TestBase/Volo.Abp.BlobStoring.Database.TestBase.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.BlobStoring.Database.Domain.Tests": { + "path": "test/Volo.Abp.BlobStoring.Database.Domain.Tests/Volo.Abp.BlobStoring.Database.Domain.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests": { + "path": "test/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests/Volo.Abp.BlobStoring.Database.EntityFrameworkCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.BlobStoring.Database.MongoDB.Tests": { + "path": "test/Volo.Abp.BlobStoring.Database.MongoDB.Tests/Volo.Abp.BlobStoring.Database.MongoDB.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + } + } +} \ No newline at end of file diff --git a/modules/blob-storing-database/Volo.Abp.BlobStoring.Database.abpsln.json b/modules/blob-storing-database/Volo.Abp.BlobStoring.Database.abpsln.json new file mode 100644 index 0000000000..3261567c56 --- /dev/null +++ b/modules/blob-storing-database/Volo.Abp.BlobStoring.Database.abpsln.json @@ -0,0 +1,7 @@ +{ + "modules": { + "Volo.Abp.BlobStoring.Database": { + "path": "Volo.Abp.BlobStoring.Database.abpmdl.json" + } + } +} \ No newline at end of file