From a69549065232b17fcdbd5c0ae144c80edf11c7e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Fri, 23 Apr 2021 17:15:11 +0300 Subject: [PATCH] Added module definition file to the identity module --- .../identity/Volo.Abp.Identity.abpmdl.json | 148 ++++++++++++++++++ .../identity/Volo.Abp.Identity.abpsln.json | 7 + 2 files changed, 155 insertions(+) create mode 100644 modules/identity/Volo.Abp.Identity.abpmdl.json create mode 100644 modules/identity/Volo.Abp.Identity.abpsln.json diff --git a/modules/identity/Volo.Abp.Identity.abpmdl.json b/modules/identity/Volo.Abp.Identity.abpmdl.json new file mode 100644 index 0000000000..04e97e0459 --- /dev/null +++ b/modules/identity/Volo.Abp.Identity.abpmdl.json @@ -0,0 +1,148 @@ +{ + "folders": { + "src": {}, + "test": {} + }, + "packages": { + "Volo.Abp.Identity.Domain.Shared": { + "path": "src/Volo.Abp.Identity.Domain.Shared/Volo.Abp.Identity.Domain.Shared.csproj", + "folder": "src", + "includes": { + "lib.domain.shared": {} + } + }, + "Volo.Abp.Identity.Domain": { + "path": "src/Volo.Abp.Identity.Domain/Volo.Abp.Identity.Domain.csproj", + "folder": "src", + "includes": { + "lib.domain": {} + } + }, + "Volo.Abp.Identity.Application.Contracts": { + "path": "src/Volo.Abp.Identity.Application.Contracts/Volo.Abp.Identity.Application.Contracts.csproj", + "folder": "src", + "includes": { + "lib.application.contracts": {} + } + }, + "Volo.Abp.Identity.Application": { + "path": "src/Volo.Abp.Identity.Application/Volo.Abp.Identity.Application.csproj", + "folder": "src", + "includes": { + "lib.application": {} + } + }, + "Volo.Abp.Identity.EntityFrameworkCore": { + "path": "src/Volo.Abp.Identity.EntityFrameworkCore/Volo.Abp.Identity.EntityFrameworkCore.csproj", + "folder": "src", + "includes": { + "lib.ef": {} + } + }, + "Volo.Abp.Identity.MongoDB": { + "path": "src/Volo.Abp.Identity.MongoDB/Volo.Abp.Identity.MongoDB.csproj", + "folder": "src", + "includes": { + "lib.mongodb": {} + } + }, + "Volo.Abp.Identity.AspNetCore": { + "path": "src/Volo.Abp.Identity.AspNetCore/Volo.Abp.Identity.AspNetCore.csproj", + "folder": "src", + "includes": { + "lib": {} + } + }, + "Volo.Abp.Identity.HttpApi": { + "path": "src/Volo.Abp.Identity.HttpApi/Volo.Abp.Identity.HttpApi.csproj", + "folder": "src", + "includes": { + "lib.http-api": {} + } + }, + "Volo.Abp.Identity.HttpApi.Client": { + "path": "src/Volo.Abp.Identity.HttpApi.Client/Volo.Abp.Identity.HttpApi.Client.csproj", + "folder": "src", + "includes": { + "lib.http-api-client": {} + } + }, + "Volo.Abp.Identity.Web": { + "path": "src/Volo.Abp.Identity.Web/Volo.Abp.Identity.Web.csproj", + "folder": "src", + "includes": { + "lib.ui.mvc": {} + } + }, + "Volo.Abp.Identity.Blazor": { + "path": "src/Volo.Abp.Identity.Blazor/Volo.Abp.Identity.Blazor.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor": {} + } + }, + "Volo.Abp.Identity.Blazor.Server": { + "path": "src/Volo.Abp.Identity.Blazor.Server/Volo.Abp.Identity.Blazor.Server.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor-server": {} + } + }, + "Volo.Abp.Identity.Blazor.WebAssembly": { + "path": "src/Volo.Abp.Identity.Blazor.WebAssembly/Volo.Abp.Identity.Blazor.WebAssembly.csproj", + "folder": "src", + "includes": { + "lib.ui.blazor-wasm": {} + } + }, + "Volo.Abp.Identity.HttpApi.Host": { + "path": "src/Volo.Abp.Identity.HttpApi.Host/Volo.Abp.Identity.HttpApi.Host.csproj", + "folder": "src", + "includes": { + "host.http-api": {} + } + }, + "Volo.Abp.Identity.TestBase": { + "path": "test/Volo.Abp.Identity.TestBase/Volo.Abp.Identity.TestBase.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.Identity.Domain.Tests": { + "path": "test/Volo.Abp.Identity.Domain.Tests/Volo.Abp.Identity.Domain.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.Identity.EntityFrameworkCore.Tests": { + "path": "test/Volo.Abp.Identity.EntityFrameworkCore.Tests/Volo.Abp.Identity.EntityFrameworkCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.Identity.MongoDB.Tests": { + "path": "test/Volo.Abp.Identity.MongoDB.Tests/Volo.Abp.Identity.MongoDB.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.Identity.Application.Tests": { + "path": "test/Volo.Abp.Identity.Application.Tests/Volo.Abp.Identity.Application.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + }, + "Volo.Abp.Identity.AspNetCore.Tests": { + "path": "test/Volo.Abp.Identity.AspNetCore.Tests/Volo.Abp.Identity.AspNetCore.Tests.csproj", + "folder": "test", + "includes": { + "lib.test": {} + } + } + } +} \ No newline at end of file diff --git a/modules/identity/Volo.Abp.Identity.abpsln.json b/modules/identity/Volo.Abp.Identity.abpsln.json new file mode 100644 index 0000000000..68660cb264 --- /dev/null +++ b/modules/identity/Volo.Abp.Identity.abpsln.json @@ -0,0 +1,7 @@ +{ + "modules": { + "Volo.Abp.Identity": { + "path": "Volo.Abp.Identity.abpmdl.json" + } + } +} \ No newline at end of file