Skip to content

Commit a18235c

Browse files
committed
Updates
1 parent 3968d32 commit a18235c

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

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

0 commit comments

Comments
 (0)