Skip to content

Commit d366386

Browse files
Merge pull request #23781 from abpframework/add-angular-infos-for-installers
Added angular Studio installation information for Account, Identity & Permission management modules
2 parents 041ac64 + cbca03f commit d366386

File tree

6 files changed

+111
-0
lines changed

6 files changed

+111
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"packages":[
3+
{
4+
"name": "@abp/ng.account",
5+
"appRoutingModuleConfiguration":{
6+
"routes":[
7+
"{ path: 'account', loadChildren: () => import('@abp/ng.account').then(c => c.createRoutes()),}"
8+
]
9+
},
10+
"appModuleConfiguration":{
11+
"imports":[
12+
{
13+
"names":[
14+
"provideAccountConfig"
15+
],
16+
"namespace": "@abp/ng.account/config"
17+
}
18+
],
19+
"providerNames":[
20+
"provideAccountConfig()"
21+
]
22+
},
23+
"tsJsonPathRecordConfigurations":[
24+
{
25+
"name": "@abp/ng.account",
26+
"paths": [
27+
"angular/projects/account/src/public-api.ts"
28+
]
29+
},
30+
{
31+
"name": "@abp/ng.account/config",
32+
"paths": [
33+
"angular/projects/account/config/src/public-api.ts"
34+
]
35+
}
36+
]
37+
}
38+
]
39+
}

modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
<Pack>true</Pack>
2626
<PackagePath>content\</PackagePath>
2727
</Content>
28+
<None Remove="AngularInstallationInfo.json" />
29+
<Content Include="AngularInstallationInfo.json" />
2830
</ItemGroup>
2931

3032
</Project>
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"packages":[
3+
{
4+
"name": "@abp/ng.identity",
5+
"appRoutingModuleConfiguration":{
6+
"routes":[
7+
"{ path: 'identity', loadChildren: () => import('@abp/ng.identity').then(c => c.createRoutes()),}"
8+
]
9+
},
10+
"appModuleConfiguration":{
11+
"imports":[
12+
{
13+
"names":[
14+
"provideIdentityConfig"
15+
],
16+
"namespace": "@abp/ng.identity/config"
17+
}
18+
],
19+
"providerNames":[
20+
"provideIdentityConfig()"
21+
]
22+
},
23+
"tsJsonPathRecordConfigurations":[
24+
{
25+
"name": "@abp/ng.identity",
26+
"paths": [
27+
"angular/projects/@abp/ng.identity/src/public-api.ts"
28+
]
29+
},
30+
{
31+
"name": "@abp/ng.identity/config",
32+
"paths": [
33+
"angular/projects/identity/config/src/public-api.ts"
34+
]
35+
},
36+
{
37+
"name": "@abp/ng.identity/proxy",
38+
"paths": [
39+
"angular/projects/identity/proxy/src/public-api.ts"
40+
]
41+
}
42+
]
43+
}
44+
]
45+
}

modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
<Pack>true</Pack>
2626
<PackagePath>content\</PackagePath>
2727
</Content>
28+
<None Remove="AngularInstallationInfo.json" />
29+
<Content Include="AngularInstallationInfo.json" />
2830
</ItemGroup>
2931

3032
</Project>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"packages":[
3+
{
4+
"name": "@abp/ng.permission-management",
5+
"tsJsonPathRecordConfigurations":[
6+
{
7+
"name": "@abp/ng.permission-management",
8+
"paths": [
9+
"angular/projects/permission-management/src/public-api.ts"
10+
]
11+
},
12+
{
13+
"name": "@abp/ng.permission-management/proxy",
14+
"paths": [
15+
"angular/projects/permission-management/proxy/src/public-api.ts"
16+
]
17+
}
18+
]
19+
}
20+
]
21+
}

modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
<Pack>true</Pack>
2626
<PackagePath>content\</PackagePath>
2727
</Content>
28+
<None Remove="AngularInstallationInfo.json" />
29+
<Content Include="AngularInstallationInfo.json" />
2830
</ItemGroup>
2931

3032
</Project>

0 commit comments

Comments
 (0)