Browse Source

init account module

pull/8883/head
Ahmet 5 years ago
parent
commit
6f459da427
  1. 75
      modules/account/Volo.Abp.Account.abpmdl.json
  2. 3
      modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.abppkg.json
  3. 3
      modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.abppkg.json
  4. 3
      modules/account/src/Volo.Abp.Account.Blazor/Volo.Abp.Account.Blazor.abppkg.json
  5. 3
      modules/account/src/Volo.Abp.Account.HttpApi.Client/Volo.Abp.Account.HttpApi.Client.abppkg.json
  6. 3
      modules/account/src/Volo.Abp.Account.HttpApi/Volo.Abp.Account.HttpApi.abppkg.json
  7. 1
      modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.abppkg.json
  8. 3
      modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.abppkg.json
  9. 3
      modules/account/test/Volo.Abp.Account.Application.Tests/Volo.Abp.Account.Application.Tests.abppkg.json

75
modules/account/Volo.Abp.Account.abpmdl.json

@ -1,65 +1,42 @@
{
"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"
"items": {
"src": {},
"test": {}
}
},
"packages": {
"Volo.Abp.Account.Application.Contracts": {
"path": "src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.csproj",
"folder": "src",
"includes": {
"lib.application.contracts": {}
}
"Volo.Abp.Account.Web": {
"path": "src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.abppkg.json",
"folder": "src"
},
"Volo.Abp.Account.Web.IdentityServer": {
"path": "src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.abppkg.json",
"folder": "src"
},
"Volo.Abp.Account.Application": {
"path": "src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.csproj",
"folder": "src",
"includes": {
"lib.application": {}
}
"path": "src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.abppkg.json",
"folder": "src"
},
"Volo.Abp.Account.Application.Contracts": {
"path": "src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.abppkg.json",
"folder": "src"
},
"Volo.Abp.Account.HttpApi": {
"path": "src/Volo.Abp.Account.HttpApi/Volo.Abp.Account.HttpApi.csproj",
"folder": "src",
"includes": {
"lib.http-api": {}
}
"path": "src/Volo.Abp.Account.HttpApi/Volo.Abp.Account.HttpApi.abppkg.json",
"folder": "src"
},
"Volo.Abp.Account.HttpApi.Client": {
"path": "src/Volo.Abp.Account.HttpApi.Client/Volo.Abp.Account.HttpApi.Client.csproj",
"folder": "src",
"includes": {
"lib.http-api-client": {}
}
},
"Volo.Abp.Account.Web": {
"path": "src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.csproj",
"folder": "src",
"includes": {
"lib.ui.mvc": {}
}
},
"Volo.Abp.Account.Web.IdentityServer": {
"path": "src/Volo.Abp.Account.IdentityServer/Volo.Abp.Account.IdentityServer.csproj",
"folder": "src",
"includes": {
"lib.ui.mvc": {}
}
"path": "src/Volo.Abp.Account.HttpApi.Client/Volo.Abp.Account.HttpApi.Client.abppkg.json",
"folder": "src"
},
"Volo.Abp.Account.Application.Tests": {
"path": "test/Volo.Abp.Account.Application.Tests/Volo.Abp.Account.Application.Tests.csproj",
"folder": "test",
"includes": {
"lib.test": {}
}
"path": "test/Volo.Abp.Account.Application.Tests/Volo.Abp.Account.Application.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Account.Blazor": {
"path": "src/Volo.Abp.Account.Blazor/Volo.Abp.Account.Blazor.abppkg.json",
"folder": "src"
}
}
}

3
modules/account/src/Volo.Abp.Account.Application.Contracts/Volo.Abp.Account.Application.Contracts.abppkg.json

@ -0,0 +1,3 @@
{
"role": "lib.application-contracts"
}

3
modules/account/src/Volo.Abp.Account.Application/Volo.Abp.Account.Application.abppkg.json

@ -0,0 +1,3 @@
{
"role": "lib.application"
}

3
modules/account/src/Volo.Abp.Account.Blazor/Volo.Abp.Account.Blazor.abppkg.json

@ -0,0 +1,3 @@
{
"role": "lib.blazor"
}

3
modules/account/src/Volo.Abp.Account.HttpApi.Client/Volo.Abp.Account.HttpApi.Client.abppkg.json

@ -0,0 +1,3 @@
{
"role": "lib.http-api-client"
}

3
modules/account/src/Volo.Abp.Account.HttpApi/Volo.Abp.Account.HttpApi.abppkg.json

@ -0,0 +1,3 @@
{
"role": "lib.http-api"
}

1
modules/account/src/Volo.Abp.Account.Web.IdentityServer/Volo.Abp.Account.Web.IdentityServer.abppkg.json

@ -0,0 +1 @@
{}

3
modules/account/src/Volo.Abp.Account.Web/Volo.Abp.Account.Web.abppkg.json

@ -0,0 +1,3 @@
{
"role": "lib.mvc"
}

3
modules/account/test/Volo.Abp.Account.Application.Tests/Volo.Abp.Account.Application.Tests.abppkg.json

@ -0,0 +1,3 @@
{
"role": "lib.test"
}
Loading…
Cancel
Save