Skip to content

Commit 66e7574

Browse files
authored
Live publish
2 parents ce77851 + fae817f commit 66e7574

File tree

6 files changed

+36
-10
lines changed

6 files changed

+36
-10
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/developer/model-driven-apps/clientapi/reference/controls/getoutput.md",
5+
"redirect_url": "getoutputs",
6+
"redirect_document_id": false
7+
},
38
{
49
"source_path": "powerapps-docs/cards/glossary.md",
510
"redirect_url": "overview",

powerapps-docs/developer/data-platform/dependent-assembly-plugins.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Dependent Assembly plug-ins (preview) (Microsoft Dataverse) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "Learn how to include additional assemblies that your plug-in assembly can depend on." # 115-145 characters including spaces. This abstract displays in the search result.
4-
ms.date: 08/23/2022
4+
ms.date: 09/20/2022
55
ms.reviewer: jdaly
66
ms.topic: article
77
author: divka78 # GitHub ID
@@ -345,7 +345,28 @@ More information:
345345

346346
## Known issues
347347

348-
You cannot use Plug-in Profiler to debug plug-ins that are part of a plug-in package.
348+
The following are known issues that should be resolved before dependent assemblies for plug-ins becomes generally available.
349+
350+
### Plug-in profiler
351+
352+
You cannot use Plug-in Profiler to debug plug-ins that are part of a plug-in package. More information: [Use Plug-in profiler](debug-plug-in.md#use-plug-in-profiler)
353+
354+
### Solution containing plugin package cannot include any steps using the plug-in
355+
356+
When you prepare a solution that contains a plugin package, do not include any plug-in step registrations that use an assembly included in the plug-in package.
357+
358+
The export of the solution will succeed, but you will not be able to import the solution. To test plug-ins that use a dependent assembly in a different environment, you must manually register the steps.
359+
360+
One exception for this are Custom APIs which use an assembly for the main operation stage. There is no separate step registration for this specific step. More information: [Create and use Custom APIs](custom-api.md)
361+
362+
### Users must be granted read access to plug-in package
363+
364+
Any users without the System Administrator security role must be granted read access to the [PluginPackage table](reference/entities/pluginpackage.md).
365+
366+
You can manually edit this for each security role following the steps here: [Edit a security role](/power-platform/admin/create-edit-security-role#edit-a-security-role). **Plugin Package** is located in the **Custom Entities** tab.
367+
368+
:::image type="content" source="media/set-pluginpackage-read-access.png" alt-text="Setting plugin package read access.":::
369+
349370

350371
### See also
351372

Loading

powerapps-docs/developer/model-driven-apps/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@
294294
href: clientapi/reference/controls/getObject.md
295295
- name: getOptions
296296
href: clientapi/reference/controls/getOptions.md
297-
- name: getOutput
298-
href: clientapi/reference/controls/getoutput.md
297+
- name: getOutputs
298+
href: clientapi/reference/controls/getoutputs.md
299299
- name: getParent
300300
href: clientapi/reference/controls/getParent.md
301301
- name: getSearchQuery

powerapps-docs/developer/model-driven-apps/clientapi/reference/controls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ These are the methods available for a Standard control.
5151
<ul>
5252
<li><a href="controls/getLabel.md" data-raw-source="[getLabel](controls/getLabel.md)">getLabel</a></li>
5353
<li><a href="controls/getName.md" data-raw-source="[getName](controls/getName.md)">getName</a></li>
54-
<li><a href="controls/getoutput.md" data-raw-source="[getOutput](controls/getName.md)">getOutput</a></li>
54+
<li><a href="controls/getoutputs.md" data-raw-source="[getOutputs](controls/getoutputs.md)">getOutputs</a></li>
5555
<li><a href="controls/getParent.md" data-raw-source="[getParent](controls/getParent.md)">getParent</a></li>
5656
<li><a href="controls/getVisible.md" data-raw-source="[getVisible](controls/getVisible.md)">getVisible</a></li>
5757

powerapps-docs/developer/model-driven-apps/clientapi/reference/controls/getoutput.md renamed to powerapps-docs/developer/model-driven-apps/clientapi/reference/controls/getoutputs.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: control.getOutput (Client API reference)
3-
description: Includes description and supported parameters for the control.getOutput method.
2+
title: control.getOutputs (Client API reference)
3+
description: Includes description and supported parameters for the control.getOutputs method.
44
ms.author: noazarur
55
author: noazarur-microsoft
6-
ms.date: 08/17/2022
6+
ms.date: 09/20/2022
77
ms.reviewer: jdaly
88
ms.topic: reference
99
applies_to: "Dynamics 365 (online)"
@@ -15,7 +15,7 @@ search.app:
1515
contributors:
1616
- JimDaly
1717
---
18-
# control.getOutput (Client API reference)
18+
# control.getOutputs (Client API reference)
1919

2020
Returns a dictionary of the output properties of the control.
2121

@@ -25,7 +25,7 @@ Standard controls.
2525

2626
## Syntax
2727

28-
`formContext.getControl(arg).getOutput();`
28+
`formContext.getControl(arg).getOutputs();`
2929

3030
## Return Value
3131

0 commit comments

Comments
 (0)