Skip to content

Commit fdc1f6d

Browse files
committed
Fix broken links
1 parent 930dd58 commit fdc1f6d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This topic demonstrates how to create and deploy code components using PowerApps
2121

2222
To begin, open **Developer Command Prompt for VS 2017** after installing PowerApps 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_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>`.
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: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The artifacts that are required to build code components are:
2020
2. [Implementing manifest](#implementing-manifest)
2121
3. [Implement component logic using TypeScript](#implementing-component-logic)
2222
4. [Add style to the code components](#adding-style-to-the-code-component)
23+
5. [Packaging code components](#packaging-your-code-components)
2324

2425
## Creating a new component project
2526

@@ -44,7 +45,7 @@ To create a new project:
4445
4546
## Implementing manifest
4647
47-
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).
4849
4950
Make changes to the predefined manifest file, as shown here:
5051
@@ -333,7 +334,7 @@ npm start
333334

334335
## Packaging your code components
335336

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:
337338

338339
1. Create a new folder **Solutions** inside the **LinearComponent** folder and navigate into the folder.
339340
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/
370371
> - Under **Code Tools**, check **NuGet targets & Build Tasks**.
371372

372373
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.
374375

375376
## Adding code components in model-driven apps
376377

0 commit comments

Comments
 (0)