Thank you for the post and references. The issue is resolved.
The migratrion guide https://abp.io/docs/9.3/release-info/migration-guides/abp-9-3#angular-ui-migrating-npm-packages-to-standalone-structure does not provide detailed instructions for standalone. The guide says: "For detailed migration steps and best practices, please refer to our upcoming documentation and/or blog post."
Do you know when the blog post will be avaiilable?
Thank you, however, for the alternatives. I will try standalone: false for now.
I noticed a difference between my older/upgraded applications and the newly generated application in main.ts.
Old: platformBrowserDynamic().bootstrapModule(AppModule) .catch(err => console.error(err));
New: bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err));
After modifying my old application to use bootstrapApplication, the ProjectName is now updating properly.
It is my understanding that this Angular change is optional (to migrate to standalone components) but it seems to be required for an ABP upgrade to 9.3. Is this change required during migration for an older application to work in 9.3 / Angular 20? Is there a way to get the "ProjectName" to appear correctly using bootstrapModule?
Thank you for any guidance.
The AI response (editing environment.ts) works for a new 9.3.2 project but it does not work for an upgraded project from ABP 9.2.x. I have two, upgraded projects (from 9.1.x and 9.2.x) that are exhibiting this issue. Other than upgrading the node and Angular versions, I didn't see any migration notes which might explain this behavior. Any guidance is appreciated.