Deploying the solution
When your project’s development and testing phase is complete, you can package it and ship it as a solution. The Power Platform CLI can help you create a solution from your project and even deploy it to the desired environment.
In this recipe, we will create the solution package using the CLI and then deploy it to our Dataverse environment.
How to do it…
First, let’s configure and build the solution package and then import it using the Power Apps maker portal.
Building the solution
- Using VS Code’s integrated console, create a subfolder to hold the solution components by entering the following command:
MD FontAwesomeSolution
. Once created, navigate to this subfolder by enteringCD FontAwesomeSolution
- Execute the following command to build the solution structure:
pac solution init --publisher-name AMPICurrents --publisher-prefix apc
- Enter the following command to add a reference...