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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ This topic demonstrates how to create and deploy code components using PowerApps
21
21
22
22
To begin, open **Developer Command Prompt for VS 2017** after installing PowerApps 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_PCF_Component* using the command `mkdir <Specify the folder name>`.
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>`.
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:
Manifest is an XML file that contains the metadata of the code component. It also defines the behavior of the code component. In this tutorial, this manifest file is created under the `<Your component Name>` subfolder. When you open the `ControlManifest.Input.xml` file in Visual Studio Code, you'll notice that the manifest file is predefined with some properties. More information: [Manifest](reference/manifest-schema-reference/manifest.md).
48
+
Manifest is an XML file that contains the metadata of the code component. It also defines the behavior of the code component. In this tutorial, this manifest file is created under the `<Your component Name>` subfolder. When you open the `ControlManifest.Input.xml` file in Visual Studio Code, you'll notice that the manifest file is predefined with some properties. More information: [Manifest](manifest-schema-reference/manifest.md).
48
49
49
50
Make changes to the predefined manifest file, as shown here:
50
51
@@ -333,7 +334,7 @@ npm start
333
334
334
335
## Packaging your code components
335
336
336
-
Follow these steps to create and import a [solution](https://docs.microsoft.com/dynamics365/customer-engagement/customize/solutions-overview) file:
337
+
Follow these steps to create and import a [solution](https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/solutions-overview) file:
337
338
338
339
1. Create a new folder **Solutions** inside the **LinearComponent** folder and navigate into the folder.
339
340
2. Create a new solution project in the **LinearComponent** folder using the following command:
@@ -370,7 +371,7 @@ Follow these steps to create and import a [solution](https://docs.microsoft.com/
6. The generated solution zip file is located in the `Solution\bin\debug` folder.
373
-
7. Manually [import the solution into Common Data Service](https://docs.microsoft.com/en-us/dynamics365/customer-engagement/customize/import-update-upgrade-solution) using the web portal once the zip file is ready or see the [Authenticating to your organization](import-custom-controls.md#authenticating-to-your-organization) and [Deployment](import-custom-controls.md#deploying-code-components) sections to import using PowerApps CLI commands.
374
+
7. Manually [import the solution into Common Data Service](https://docs.microsoft.com/en-us/powerapps/maker/common-data-service/import-update-export-solutions) using the web portal once the zip file is ready or see the [Authenticating to your organization](import-custom-controls.md#authenticating-to-your-organization) and [Deployment](import-custom-controls.md#deploying-code-components) sections to import using PowerApps CLI commands.
0 commit comments