You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/component-framework/create-custom-controls-using-pcf.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,9 @@ This article demonstrates how to create and deploy code components using Power A
19
19
20
20
## Create a new component
21
21
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.
23
23
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>`.
25
25
2. Go to the newly created folder using the command `cd <specify your new folder path>`.
26
26
3. Create a new component project by passing some basic parameters using the command:
Copy file name to clipboardExpand all lines: powerapps-docs/developer/component-framework/use-sample-components.md
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,23 +14,27 @@ ms.topic: "article"
14
14
15
15
# How to use the sample components?
16
16
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.
18
18
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.
20
20
21
21
## Before you can try the sample components
22
22
23
23
To try the sample components, you must first:
24
24
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.
Follow the steps below to import and try the sample components in your model-driven or canvas app:
31
31
32
32
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
+
34
38
1. Run the following command to get all the required dependencies:
0 commit comments