Skip to content

How to submit a Power App sample

Hugo Bernier edited this page Apr 28, 2021 · 11 revisions

This post will guide you through how we can best accept your sample contribution for the Power Apps gallery.

Why

To make your app reusable, so that more people can benefit from it, we want to share the source code files. Unfortunately, when you save your Canvas App from Power Apps Studio, it is saved in one opaque .msapp file. To be able to get the source files, you will need to use the Power Apps Language Toolkit to extract all files from the .msapp file. This way,

  • developers can not only open the source code in their code editor of choice but can effectively manage the code of a Canvas app in GitHub or Azure DevOps. This makes a huge difference as we can't look into .msapp files.
  • makers can still open the .msapp file to easily import an app sample into their environment

Prerequisites

To be able to use the Power Apps Language Toolkit, you will need to

  • Install Visual Studio Code
  • Install .NET Core 3.1.x (x64)
  • Download the Power Apps Language Toolkit
  • Extract the Power Apps Language Toolkit to a local folder
  • Open that local folder
  • Locate the build.cmd file
  • Using the contextual menu (i.e.: Right-click), select Run as Administrator
  • In the Pop up Window, click more information
  • Select Run anyway

Please note, that the command prompt will open, show a few lines and then close automatically again.

Please also note, that you can now find a bin folder in the local folder you extracted the PowerApps Language Toolkit to. In this bin folder, you will find a Debug folder, and inside of the debug folder you will find a PASopa folder.

folder structure

Download the .msapp file

  • Go to make.powerapps.com
  • Log in
  • Open your app in edit mode
  • Select File
  • Select Save as
  • Select This Computer
  • Select Download
  • Move the downloaded .msapp file to your folder in which you extracted the PowerApps Language Toolkit as well.

Unpack .msapp file

Now that we have the .msapp file of the app:

  • Use the WINDOWS key on your keyboard and search for Command Prompt (first few letters should do)
  • Run as an Administrator
  • Copy the path of the PASopa folder
  • Using the command prompt, enter cd <your PASopa path>
  • Copy the path of the .msapp file
  • Create a new folder in your app folder
  • Copy the path of that new folder
  • Using the command prompt, enter pasopa -unpack <your msappfile path> <new folder path>

Please note that you will now find all source code files in that new folder. You can open the folder in a code editor of your choice, for example, Visual Studio Code.

submit as a sample

Well done! Now you can submit these source code files as a sample. Please, use the following steps:

Please do not forget to provide as well a README.md file which explains what your sample is about. Use the provided template.

If this all sounds confusing to you and you are new on GitHub - you are more than welcome to attend the Sharing Is Caring sessions, where we guide you through using GitHub and making your first PR.

Sharing Is Caring 💖

Clone this wiki locally