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
-18Lines changed: 0 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -97,24 +97,6 @@ Follow the steps below to create and import a [solution](/powerapps/maker/common
97
97
98
98
To add a custom component like data-set component or simple table component to a grid or view, follow the steps mentioned in the topic [Add controls to fields and entities](add-custom-controls-to-a-field-or-entity.md).
99
99
100
-
## Telemetry
101
-
102
-
The feature team is aggregating anonymized telemetry in order to understand which features or capabilities in the PowerApps CLI tool are most often used by the developers. The aggregated data allows us to provide the best experience to the customers by focusing on what’s truly is important.
103
-
104
-
> [!NOTE]
105
-
> To disable the telemetry collection, run the command `pac telemetry --enable false`. To turn the telemetry back, use the command `pac telemetry --enable true`.
106
-
107
-
## How to Uninstall Microsoft PowerApps CLI
108
-
109
-
To uninstall the CLI tool please run the MSI from [here](http://download.microsoft.com/download/D/B/E/DBE69906-B4DA-471C-8960-092AB955C681/powerapps-cli-0.1.51.msi). If you are Private Preview Participant and have an older version of CLI, please follow below manual steps:
110
-
111
-
1. To find out where PowerApps CLI is installed, open a command prompt and type `where pac`
112
-
1. Delete the PowerAppsCLI folder.
113
-
1. Open Environment Variables tool by running command `rundll32 sysdm.cpl,EditEnvironmentVariables` in the command prompt
114
-
1. Double-click on `Path` under `User variable for...` section
115
-
1. Select the row containing PowerAppsCLI path and click the Delete button on the right-hand side
Copy file name to clipboardExpand all lines: powerapps-docs/developer/component-framework/get-powerapps-cli.md
+61-5Lines changed: 61 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: Microsoft PowerApps Command Line Interface (CLI)| Microsoft Docs
3
-
description: "Get the Microsoft PowerApps Command Line Interface (CLI) to create, debug and deploy custom components using PowerApps component framework."
2
+
title: Get tooling for PowerApps component framework | Microsoft Docs
3
+
description: "Get the Microsoft PowerApps CLI to create, debug and deploy custom components using PowerApps component framework."
Use Microsoft PowerApps Command Line Interface (CLI) to create, debug and deploy custom components using PowerApps component framework. PowerApps CLI enables developers to quickly create PowerApps component framework components and will in the future be expanded to include support for additional development and Application Lifecycle Management (ALM) experiences.
19
+
Use **Microsoft PowerApps CLI** (commnad-line interface) to create, debug and deploy custom components using PowerApps component framework. PowerApps CLI enables developers to quickly create PowerApps component framework components and will in the future be expanded to include support for additional development and Application Lifecycle Management (ALM) experiences.
20
20
21
21
## What is Microsoft PowerApps CLI?
22
22
@@ -28,7 +28,7 @@ Microsoft PowerApps CLI is a simple, single-stop developer command line interfac
28
28
> - If you give feedback about the software to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose.
29
29
> - Microsoft doesn't provide support for this preview feature. Microsoft Technical Support won’t be able to help you with issues or questions.
30
30
31
-
## Get Microsoft PowerApps CLI
31
+
## Install Microsoft PowerApps CLI
32
32
33
33
To use Microsoft PowerApps CLI, do the following:
34
34
@@ -46,6 +46,62 @@ To use Microsoft PowerApps CLI, do the following:
46
46
> - To deploy your custom component using PowerApps CLI, you must have a Common Data Service environment with system administrator or system customizer privileges.
47
47
> - Currently, PowerApps CLI is supported only on Windows 10.
48
48
49
+
## Update Microsoft PowerApps CLI to the latest version
50
+
51
+
To update your Microsoft PowerApps CLI to the latest version 02.856.1 and take advantage of all the latest capabilities, run the following command in the Developer Command Prompt for VS 2017:
52
+
53
+
```CLI
54
+
pac install latest
55
+
```
56
+
57
+
### What else do I need to know?
58
+
59
+
If you have already created a solution project or PowerApps component framework project, ensure to update these projects to the latest packages. This will help you leverage newly added capabilities with your existing projects. Newly created projects will already contain these settings.
60
+
61
+
- Update the version tag in your `pcfproj` located within your PowerApps component framework project folder:
> After making the above changes, run the command `msbuild /t:restore` to update your project to the correct version.
74
+
75
+
76
+
- Update the version tag in your `package.json` file located within your PowerApps component framework project folder:
77
+
78
+
```JSON
79
+
"devDependencies":{
80
+
"pcf-scripts": "^0",
81
+
"pcf-start": "^0"
82
+
}
83
+
```
84
+
> [!NOTE]
85
+
> After making above changes, using 'npm update' in the command prompt will always update your project to the correct version.
86
+
87
+
## Microsoft PowerApps CLI telemetry
88
+
89
+
The feature team is aggregating anonymized telemetry in order to understand which features or capabilities in the PowerApps CLI tool are most often used by the developers. The aggregated data allows us to provide the best experience to the customers by focusing on what’s truly is important.
90
+
91
+
> [!NOTE]
92
+
> To disable the telemetry collection, run the command `pac telemetry --enable false`. To turn the telemetry back, use the command `pac telemetry --enable true`.
93
+
94
+
## Uninstall Microsoft PowerApps CLI
95
+
96
+
To uninstall the CLI tool please run the MSI from [here](http://download.microsoft.com/download/D/B/E/DBE69906-B4DA-471C-8960-092AB955C681/powerapps-cli-0.1.51.msi). If you are Private Preview Participant and have an older version of CLI, please follow below manual steps:
97
+
98
+
1. To find out where PowerApps CLI is installed, open a command prompt and type `where pac`
99
+
1. Delete the PowerAppsCLI folder.
100
+
1. Open Environment Variables tool by running command `rundll32 sysdm.cpl,EditEnvironmentVariables` in the command prompt
101
+
1. Double-click on `Path` under `User variable for...` section
102
+
1. Select the row containing PowerAppsCLI path and click the Delete button on the right-hand side
103
+
1. Click **OK** twice.
104
+
49
105
### See also
50
106
51
107
[Implementing components in TypeScript](implementing-controls-using-typescript.md)<br/>
Copy file name to clipboardExpand all lines: powerapps-docs/developer/component-framework/import-custom-controls.md
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.suite: ""
10
10
ms.topic: "article"
11
11
---
12
12
13
-
# Deploying controls into Common Data Service
13
+
# Package a custom component
14
14
15
15
This topic demonstrates how to import custom controls into Common Data Service. After developing custom controls using the PowerApps CLI, next step is to import those controls, so that you can see the controls in runtime.
16
16
@@ -34,13 +34,7 @@ Follow the steps below to create and import a solution file:
34
34
4. The generated solution files are located in `\bin\debug\`.
35
35
5. You should manually import the solution using the web portal.
36
36
37
-
## Telemetry
38
-
39
-
The feature team is aggregating anonymized telemetry in order to understand which features or capabilities in the PowerApps CLI tool are most often used by the developers. The aggregated data allows to provide the best experience to the customers by focusing on what’s truly is important.
40
-
41
-
To disable the telemetry collection, run the command `pac telemetry - -enabled false`. To turn the telemetry back, use the command `pac telemetry- -enabled true`.
42
-
43
-
## How to remove components from a solution
37
+
## How to remove components from a solution
44
38
45
39
If you would like to remove a custom component from a solution, follow the steps below:
0 commit comments