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/common-data-service/use-source-control-solution-files.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ The SolutionPackager tool can be used with any source control system. After a so
24
24
As further customizations and changes are necessary for the solution, developers should edit or customize components through existing means, export again to create a .zip file, and extract the compressed solution file into the same folder.
25
25
26
26
> [!IMPORTANT]
27
-
> Except for the sections described in [When to edit the customizations file](/model-driven-apps/when-edit-customization-file.md), manual editing of extracted component files and .zip files is not supported.
27
+
> Except for the sections described in [When to edit the customizations file](../model-driven-apps/when-edit-customization-file.md), manual editing of extracted component files and .zip files is not supported.
28
28
29
29
When the SolutionPackager tool extracts the component files it will not overwrite existing component files of the same name if the file contents are identical. In addition, the tool honors the read-only attribute on component files producing a warning in the console window that particular files were not written. This enables the user to check out, from source control, the minimal set of files that are changing. The `/clobber` parameter can be used to override and cause read-only files to be written or deleted. The `/allowWrite` parameter can be used to assess what impact an extract operation has without actually causing any files to be written or deleted. Use of the `/allowWrite` parameter with verbose logging is effective.
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
@@ -114,11 +114,11 @@ You can also interact with the component locally in real time and observe elemen
114
114
115
115
## Deploying your PowerApps component framework components
116
116
117
-
Once the debugging and development is finished, you just have one step remaining - to deploy your new component.
117
+
Once the debugging and development is finished, you just have one step remaining to deploy your new component.
118
118
119
119
Follow the steps below to create and import a [solution](https://docs.microsoft.com/en-us/dynamics365/customer-engagement/customize/solutions-overview) file:
120
120
121
-
1. Create a new directory and go to it 'cd <newdirectoryname>'
121
+
1. Create a new directory and go to it `cd <new directory name>`
122
122
2. Create a new solution project in the directory of your choice by using the command
123
123
`pac solution init --publisherName <enter your publisher name> --customizationPrefix <enter your publisher name>` after `cd <your new folder>`.
|`display-name-key`|Used in the customization screens as localized strings that describes the name of the property.|`string`|Yes|
27
27
|`of-type`|Defines the data type of the property|See [Remarks](#remarks)|Optional|
28
-
|`usage`|The usage attribute identifies if the property is meant to represent an entity attribute that the component can change (bound) or read-only values (input)|`bound`,`input` or `output`|Optional|
28
+
|`usage`|The usage attribute identifies if the property is meant to represent an entity attribute that the component can change (bound) or read-only values (input)|`bound` or `input`|Optional|
29
29
|`required`|Whether the property is required or not|`boolean`|Optional|
30
30
|`of-type-group`|Name of the type-group as defined in manifest|`string`|Optional|
31
31
|`description-key`|Used in the customization screens as localized strings that describes the description of the property.|`string`|Optional|
Copy file name to clipboardExpand all lines: powerapps-docs/maker/common-data-service/solution-layers.md
+19-15Lines changed: 19 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: "View solution layers | MicrosoftDocs"
3
3
description: "Learn how you can use solution layers"
4
4
keywords:
5
-
ms.date: 04/10/2019
5
+
ms.date: 04/18/2019
6
6
ms.service: powerapps
7
7
ms.custom:
8
8
ms.topic: article
@@ -26,36 +26,40 @@ search.app:
26
26
- D365CE
27
27
---
28
28
29
+
<!--note from editor: Best practice is that H1 title and title in metadata are different. -->
30
+
29
31
# View solution layers
30
-
Solution layers allows you to view all component changes that occur due to solution changes over time. Within a solution layer, you can drill-down to view the specific changed and unchanged property details for a component.
32
+
Solution layers allow you to view all component changes that occur due to solution changes over time. Within a solution layer, you can drilldown to view specific changed and unchanged property details for a component.
31
33
32
-
Solution layers provide the following benefits:
33
-
- Let’s you see the order in which a solution changed a component.
34
-
- Let’s you view all properties of a component within a specific solution including the changes to the component.
35
-
- Can be used to troubleshoot dependency or solutionlayering issues by displaying change details for a component that was introduced by a solution change.
34
+
Solution layers:
35
+
- Let you see the order in which a solution changed a component.
36
+
- Let you view all properties of a component within a specific solution, including the changes to the component.
37
+
- Can be used to troubleshoot dependency or solution-layering issues by displaying change details for a component that was introduced by a solution change.
36
38
37
39
## View the solution layers for a component
38
40
You can access solution layers from the **Components** list or from the **Dependency Details** dialog box in solution explorer.
39
41
40
-
1. To view solution layers from the **Components** list, [open solution explorer](../model-driven-apps/advanced-navigation.md#solution-explorer), in the **Components** list select a component, such as **Account**, and then select **Solution Layers** on the toolbar.
42
+
<!--note from editor: In step 2 below, does the page display a name at top? If so, use the same capitalization in text. -->
43
+
44
+
1. To view solution layers from the **Components** list, open [solution explorer](../model-driven-apps/advanced-navigation.md#solution-explorer). In the **Components** list, select a component, such as **Account**, and then select **Solution Layers** on the toolbar.
2. The solution layer page appears that displays each layer for the component, such as the account entity displayed here, with the most recent layer at the top. To view the details for a solution layer, select it.
49
+
2. The solution layer page appears. It displays each layer for the component, such as the **Account** entity displayed here, with the most recent layer at the top. To view the details for a solution layer, select it.
3.On the **Solution Layer** dialog box, the **Changed Properties** tab displays only those properties that were modified as part of the specific solution layer.
54
+
3.In the **Solution Layer** dialog box, the **Changed Properties** tab displays only those properties that were modified as part of the specific solution layer.
0 commit comments