From bbbe17503c125528bd71dac43681369adb208360 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 23 Sep 2025 13:56:07 +0300 Subject: [PATCH 1/4] Added AngularInstallationInfo for account module --- .../AngularInstallationInfo.json | 33 +++++++++++++++++++ .../Volo.Abp.Account.Installer.csproj | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json diff --git a/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json b/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json new file mode 100644 index 00000000000..6d8007fb271 --- /dev/null +++ b/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json @@ -0,0 +1,33 @@ +{ + "packages":[ + { + "name": "@abp/ng.account", + "appRoutingModuleConfiguration":{ + "routes":[ + "{ path: 'account', loadChildren: () => import('@abp/ng.account').then(c => c.createRoutes()),}" + ] + }, + "appModuleConfiguration":{ + "imports":[ + { + "names":[ + "provideAccountConfig" + ], + "namespace": "@abp/ng.account/config" + } + ], + "providerNames":[ + "provideAccountConfig()" + ] + }, + "tsJsonPathRecordConfigurations":[ + { + "name": "@abp/ng.account", + "paths": [ + "angular/projects/account/src/public-api.ts" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj b/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj index 8ae730d20c1..e291143c1bc 100644 --- a/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj +++ b/modules/account/src/Volo.Abp.Account.Installer/Volo.Abp.Account.Installer.csproj @@ -25,6 +25,8 @@ true content\ + + From 942919ac57ae0f31dd5bbd9ac74a774ce75b2cb8 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 23 Sep 2025 13:56:13 +0300 Subject: [PATCH 2/4] Added AngularInstallationInfo for identity module --- .../AngularInstallationInfo.json | 45 +++++++++++++++++++ .../Volo.Abp.Identity.Installer.csproj | 2 + 2 files changed, 47 insertions(+) create mode 100644 modules/identity/src/Volo.Abp.Identity.Installer/AngularInstallationInfo.json diff --git a/modules/identity/src/Volo.Abp.Identity.Installer/AngularInstallationInfo.json b/modules/identity/src/Volo.Abp.Identity.Installer/AngularInstallationInfo.json new file mode 100644 index 00000000000..93b13bec02b --- /dev/null +++ b/modules/identity/src/Volo.Abp.Identity.Installer/AngularInstallationInfo.json @@ -0,0 +1,45 @@ +{ + "packages":[ + { + "name": "@abp/ng.identity", + "appRoutingModuleConfiguration":{ + "routes":[ + "{ path: 'identity', loadChildren: () => import('@abp/ng.identity').then(c => c.createRoutes()),}" + ] + }, + "appModuleConfiguration":{ + "imports":[ + { + "names":[ + "provideIdentityConfig" + ], + "namespace": "@abp/ng.identity/config" + } + ], + "providerNames":[ + "provideIdentityConfig()" + ] + }, + "tsJsonPathRecordConfigurations":[ + { + "name": "@abp/ng.identity", + "paths": [ + "angular/projects/@abp/ng.identity/src/public-api.ts" + ] + }, + { + "name": "@abp/ng.identity/config", + "paths": [ + "angular/projects/identity/config/src/public-api.ts" + ] + }, + { + "name": "@abp/ng.identity/proxy", + "paths": [ + "angular/projects/identity/proxy/src/public-api.ts" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj b/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj index bed3e27a0ed..13c082b34ea 100644 --- a/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj +++ b/modules/identity/src/Volo.Abp.Identity.Installer/Volo.Abp.Identity.Installer.csproj @@ -25,6 +25,8 @@ true content\ + + From 2d4470d37eff357bbd2c77a63f31c92d9e6bde87 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 23 Sep 2025 13:56:27 +0300 Subject: [PATCH 3/4] Added AngularInstallationInfo for Permission Management module --- .../AngularInstallationInfo.json | 21 +++++++++++++++++++ ....Abp.PermissionManagement.Installer.csproj | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/AngularInstallationInfo.json diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/AngularInstallationInfo.json b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/AngularInstallationInfo.json new file mode 100644 index 00000000000..f3216085449 --- /dev/null +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/AngularInstallationInfo.json @@ -0,0 +1,21 @@ +{ + "packages":[ + { + "name": "@abp/ng.permission-management", + "tsJsonPathRecordConfigurations":[ + { + "name": "@abp/ng.permission-management", + "paths": [ + "angular/projects/permission-management/src/public-api.ts" + ] + }, + { + "name": "@abp/ng.permission-management/proxy", + "paths": [ + "angular/projects/permission-management/proxy/src/public-api.ts" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj index a427c594de5..0d4b1637d60 100644 --- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj +++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Installer/Volo.Abp.PermissionManagement.Installer.csproj @@ -25,6 +25,8 @@ true content\ + + From cbca03fef603caa0fcdb68481d340e28d1686094 Mon Sep 17 00:00:00 2001 From: sumeyye Date: Tue, 30 Sep 2025 09:51:15 +0300 Subject: [PATCH 4/4] update: add config path for account package --- .../Volo.Abp.Account.Installer/AngularInstallationInfo.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json b/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json index 6d8007fb271..37a07a803c1 100644 --- a/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json +++ b/modules/account/src/Volo.Abp.Account.Installer/AngularInstallationInfo.json @@ -26,6 +26,12 @@ "paths": [ "angular/projects/account/src/public-api.ts" ] + }, + { + "name": "@abp/ng.account/config", + "paths": [ + "angular/projects/account/config/src/public-api.ts" + ] } ] }