
Hello everyone,
the following case, which I'm not sure how to solve.
I have a Power Platform Solution which within its core has the same objects like Cloudflows etc.
But for each customer there will be individualization.
My first approach was to just separate the core solution from the individualization, so create 2 solutions.
core-solution and customerName-solution this would make it easy to update my core-solution in my github action deployment pipeline.
The problem is that we will be deploying for each customer, that means i cannot use the core-soltion name multiple times, so how can I change the solution name but still be able to update it with a different name.
Or how can I merge core and individualization to one solution and deploy it with a different name.
I dont want to end up with updating every solution by hand just because of the name.
Any help or suggestion is appreciated.
Thanks
@LeonardSchwenk Your original approach is correct. The unique name of the solution is property of the solution and cannot be changed whilst the solution is in an environment.
If I'm understanding your situation correctly, in your development environment you have a "Core-Solution" solution which is used by all customers (and therefore deployed to all customer environments), plus a unique solution specific to each customer (and therefore only deployed to the respective customer environments (ie. a "Contoso-Solution" for the customer called Contoso, an "AdventureWorks-Solution" for the customer called Adventure Works, etc). So Contoso's environments will have deployed to them the "Core-Solution" plus "Contoso-Solution", whilst Adventure Works' environments will have deployed to them the "Core-Solution" plus "AdventureWorks-Solution", and so on.
Unless I have misunderstood your situation?