Book Image

Microsoft Power Apps Cookbook

By : Eickhel Mendoza
Book Image

Microsoft Power Apps Cookbook

By: Eickhel Mendoza

Overview of this book

Microsoft Power Apps Cookbook is a complete resource filled with meticulously crafted recipes to help you build customized business apps that meet ever-changing enterprise demands. You will learn how to design modern apps with the low-code approach in a rapid application development environment by achieving enterprise-wide business agility.
Table of Contents (13 chapters)

Deploying the solution

When your project's development and testing phase is complete, you can now package it and ship it as a solution. The Power Apps CLI can help you create a solution from this 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 portal.

Building the solution

  1. Using the integrated console, create a subfolder to hold the solution components by entering the following command: MD FontAwesomeSolution. Once created, navigate to this subfolder by entering CD FontAwesomeSolution.
  2. Execute the pac solution init --publisher-name AMPICurrents --publisher-prefix apc command to build the solution structure.
  3. Enter the pac solution add-reference --path .. command to add a reference to our code component.
  4. From the Explorer...