To get the most out of this book
This book is dedicated to Microsoft Power Platform, so a permanent or temporary (trial) license of the Power Platform cloud components is required. Further, there is a number of tools necessary to perform configuration, customization, and custom development on the Power Platform. Those tools are described in detail in Chapter 4, Power Platform Customization and Development Tools and Techniques.
Download the example code files
The code bundle for the book is hosted on GitHub at https://github.com/PacktPublishing/Microsoft-Power-Platform-Enterprise-Architecture-2E. We also have other code bundles from our rich catalog of books and videos available at https://github.com/PacktPublishing/. Check them out!
Download the color images
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. You can download it here: https://packt.link/CTyMi.
Conventions used
There are a number of text conventions used throughout this book.
CodeInText
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. For example: βThe authentication process is using the URL
, clientId
, clientsecret
, and the ID
of the AAD tenant to perform the authentication process.β
A block of code is set as follows:
string url = "https://contoso.crm.dynamics.com";
string clientId = "51f81489-12ee-4a9e-aaae-a2591f45987d";
string clientsecret = "<yourclientsecret>";
string tenantid = "<yourtenantid>";
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
string url = "https://contoso.crm.dynamics.com";
string clientId = "51f81489-12ee-4a9e-aaae-a2591f45987d";
string clientsecret = "<yourclientsecret>";
string tenantid = "<yourtenantid>";
Any command-line input or output is written as follows:
Get-AdminPowerAppEnvironment *Contoso*
Bold: Indicates a new term, an important word, or words that you see on the screen. For instance, words in menus or dialog boxes appear in the text like this. For example: βModel-driven apps integration with Application Insights needs to be implemented with code.β
Warnings or important notes appear like this.
Tips and tricks appear like this.