Skip to content

Commit 15ab634

Browse files
authored
Live publish
2 parents d3226c1 + 8c78c00 commit 15ab634

File tree

9 files changed

+27
-19
lines changed

9 files changed

+27
-19
lines changed

powerapps-docs/developer/common-data-service/authenticate-dot-net-framework.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Authentication with .NET Framework applications (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "How .NET Framework applications can authenticate with Common Data Service" # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 01/25/2019
5+
ms.date: 05/11/2020
66
ms.reviewer: "pehecke"
77
ms.service: powerapps
88
ms.topic: "article"
@@ -48,6 +48,7 @@ More information: [Build Windows client applications using the XRM tools](xrm-to
4848
Use .NET Framework version 4.6.2 or higher when you create client applications. Only applications using Transport Level Security (TLS) 1.2 or better security can connect. TLS 1.2 is not the default protocol used by .NET Framework 4.5.2, but it is in .NET Framework 4.6.2.
4949

5050
> [!NOTE]
51+
> The SDK APIs available in the [Microsoft.CrmSdk.XrmTooling.CoreAssembly](https://www.nuget.org/packages/Microsoft.CrmSdk.XrmTooling.CoreAssembly/) and other "CrmSdk" NuGet packages do not support .NET Core code development. Revised packages (containing refactored APIs) that do support .NET Core development can be found here: [Microsoft.Powerplatform.Cds.Client](https://www.nuget.org/packages/Microsoft.Powerplatform.Cds.Client/) and [Microsoft.Dynamics.Sdk.Messages](https://www.nuget.org/packages/Microsoft.Dynamics.Sdk.Messages/).<p/>
5152
> **Known Issue with Visual Studio 2015**
5253
>
5354
> When you are running your project/solution in VS 2015 in debug mode, you may not be able to connect. This happens regardless of whether you are using a Target Framework of 4.6.2 or higher. This can occur because the Visual Studio hosting process is compiled against .NET 4.5 which means by default it does not support TLS 1.2. You can disable the Visual Studio hosting process as a work around.

powerapps-docs/developer/common-data-service/use-multi-tenant-server-server-authentication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ In this scenario any Common Data Service tenant can potentially use your multi-t
6262
You will create a multi-tenant web application or service which uses Azure AD as the authentication provider.
6363

6464
Exactly how you do this will not be the focus of this topic. There are a number of ways you can approach this and make choices that fit your requirements or preferences. See the following links for more information and samples:
65+
66+
- [Build a multi-tenant SaaS web application using Azure AD & OpenID Connect](https://github.com/Azure-Samples/active-directory-dotnet-webapp-multitenant-openidconnect)
6567

66-
- [Build a multi-tenant SaaS web application using Azure AD &amp; OpenID Connect](https://azure.microsoft.com/documentation/samples/active-directory-dotnet-webapp-multitenant-openidconnect/)
67-
68-
- [Build a multi-tenant SaaS web application that calls a web API using Azure AD](https://azure.microsoft.com/documentation/samples/active-directory-webapp-webapi-multitenant-openidconnect-aspnetcore/)
68+
- [An ASP.NET Core Web app signing-in users in any org with the Microsoft identity platform](https://github.com/Azure-Samples/active-directory-aspnetcore-webapp-openidconnect-v2/tree/master/1-WebApp-OIDC/1-2-AnyOrg)
6969

70-
Azure AD requires the following values to register your application:
70+
Azure AD requires the following values to register your application:
7171

7272
|Value|Description|
7373
|-----------|-----------------|

powerapps-docs/developer/component-framework/add-custom-controls-to-a-field-or-entity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.topic: "article"
1414

1515
# Add code components to a field or entity in model-driven apps
1616

17-
Code components let you transform fields that traditionally contain text into visualizations. Similarly, you can use code components to transform datasets, such as a view, to display in a more visual rendering rather than a list of records. code components can appear as visualizations on forms, dashboards, views, and homepage grids.
17+
Code components let you transform fields that traditionally contain text into visualizations. Similarly, you can use code components to transform datasets, such as a view, to display in a more visual rendering rather than a list of records. Code components can appear as visualizations on forms, dashboards, views, and homepage grids.
1818

1919

2020
> [!div class="mx-imgBorder"]
@@ -93,4 +93,4 @@ To add a code component like data-set component or simple table component to a g
9393

9494
[Implementing components in TypeScript](implementing-controls-using-typescript.md)<br/>
9595
[Power Apps component framework API reference](reference/index.md)<br/>
96-
[Power Apps component framework overview](overview.md)
96+
[Power Apps component framework overview](overview.md)

powerapps-docs/developer/component-framework/create-custom-controls-using-pcf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ This article demonstrates how to create and deploy code components using Power A
1919

2020
## Create a new component
2121

22-
To begin, open **Developer Command Prompt for VS 2017** after installing Power Apps CLI.
22+
To begin, open **Developer Command Prompt for VS 2017 or higher** after installing Power Apps CLI.
2323

24-
1. In the Developer Command Prompt for VS 2017, create a new folder on your local machine, for example, *C:\Users\your name\Documents\My_code_Component* using the command `mkdir <Specify the folder name>`.
24+
1. In the Developer Command Prompt, create a new folder on your local machine, for example, *C:\Users\your name\Documents\My_code_Component* using the command `mkdir <Specify the folder name>`.
2525
2. Go to the newly created folder using the command `cd <specify your new folder path>`.
2626
3. Create a new component project by passing some basic parameters using the command:
2727

powerapps-docs/developer/component-framework/implementing-controls-using-typescript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The following steps are required to build a linear slider code component:
2929

3030
To create a new project:
3131

32-
1. Open a **Developer Command Prompt for VS 2017** window. Create a new folder for the project using the following command:
32+
1. Open a **Developer Command Prompt for VS 2017 or higher** window. Create a new folder for the project using the following command:
3333
```CLI
3434
mkdir LinearComponent
3535
```
@@ -374,7 +374,7 @@ Follow these steps to create and import a [solution](https://docs.microsoft.com/
374374
> [!NOTE]
375375
> Make sure that **NuGet targets & Build Tasks** is checked. To enable it:
376376
> - Open **Visual Studio Installer**.
377-
> - For Visual Studio 2017, select **Modify**.
377+
> - For Visual Studio 2017 or higher, select **Modify**.
378378
> - Select **Individual Components**.
379379
> - Under **Code Tools**, check **NuGet targets & Build Tasks**.
380380

powerapps-docs/developer/component-framework/issues-and-workarounds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Here are some common issues that you might come across while using the Power App
2525
**Workaround**:
2626

2727
- Open Visual Studio Installer.
28-
- For Visual Studio 2017, select **Modify**.
28+
- For Visual Studio 2017 or higher, select **Modify**.
2929
- Select **Individual Components**.
3030
- Under Code Tools, check **NuGet targets & Build Tasks**.
3131

powerapps-docs/developer/component-framework/use-sample-components.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,27 @@ ms.topic: "article"
1414

1515
# How to use the sample components?
1616

17-
All the sample components listed under this section are available to download from [here](https://go.microsoft.com/fwlink/?linkid=2088525) so that you can try them out in your model-driven or canvas apps.
17+
All the sample components listed under this section are available to download from [here](https://github.com/microsoft/PowerApps-Samples/tree/master/component-framework) so that you can try them out in your model-driven or canvas apps.
1818

19-
The individual sample component topics under this section provide you an overview of the sample component, it's visual appearance, and the manifest, code, and resources for the sample component.
19+
The individual sample component topics under this section provide you an overview of the sample component, it's visual appearance, manifest, code, and resources for the sample component.
2020

2121
## Before you can try the sample components
2222

2323
To try the sample components, you must first:
2424

25-
- [Download](https://go.microsoft.com/fwlink/?linkid=2088525) the sample components so that you have a local copy.
25+
- [Download](https://github.com/microsoft/PowerApps-Samples/tree/master/component-framework) the sample components so that you have a local copy.
2626
- Install [Power Apps CLI](https://aka.ms/PowerAppsCLI).
2727

2828
## Try the sample components
2929

3030
Follow the steps below to import and try the sample components in your model-driven or canvas app:
3131

3232
1. Navigate to the folder on your computer where you have downloaded the sample components, and extract the .zip file.
33-
1. Open Developer Command Prompt for Visual Studio 2017 and navigate to the sample component folder in the extracted folder that you want to see it in runtime. For example, navigate to the `/extracted_folder/TS_IncrementComponent` folder.
33+
1. Open Developer Command Prompt for Visual Studio 2017 or higher and navigate to the sample component folder in the extracted folder that you want to see it in runtime. For example, navigate to the `/extracted_folder/TS_IncrementComponent` folder.
34+
35+
>[!NOTE]
36+
> You need to go into the specific component folder if you wish to see that particular component in runtime. You can add multiple components into a single solution file during the build process.
37+
3438
1. Run the following command to get all the required dependencies:
3539
```CLI
3640
npm install

powerapps-docs/developer/model-driven-apps/clientapi/reference/grids/gridcontrol/getFetchXml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Read-only and editable grids
2626

2727
## Syntax
2828

29-
`var result = gridContext.getfetchXml();`
29+
`var result = gridContext.getFetchXml();`
3030

3131
## Return Value
3232

powerapps-docs/maker/common-data-service/import-update-export-solutions.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Import solutions | MicrosoftDocs"
33
description: "Learn how to import a solution in Power Apps"
44
ms.custom: ""
5-
ms.date: 01/30/2020
5+
ms.date: 05/11/2020
66
ms.reviewer: ""
77
ms.service: powerapps
88
ms.suite: ""
@@ -26,7 +26,10 @@ search.app:
2626
# Import solutions
2727

2828
You can import solutions manually using the steps below. Only import solutions that you've obtained from a trusted source. Customizations might include code that can send data to external sources.
29-
29+
30+
> [!NOTE]
31+
> The system administrator security role is required to import a solution that includes a plug-in assembly.
32+
3033
1. Sign into [Power Apps](https://make.powerapps.com/?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc) and select **Solutions** from the left navigation.
3134

3235
2. On the command bar, select **Import**.

0 commit comments

Comments
 (0)