Does the ABP template for .NET Core have the features listed in Javascript-API?
More importantly, can the .NET Core version generate the dynamic proxy (services.ts) corresponding to my server-side entities?
Yes, the ABP template for .NET Core has all the features listed in Javascript-API.
ABP does not generate the dynamic proxy. Recommended tool used by the ABP team is NSwag:
We are using nswag to generate typescript service proxied. Nswag uses swagger endpoint to get service definitions and creates typescript classes automatically. Since there is such a great tool, we didn't want to work on that.