Skip to content

Commit f04a7a8

Browse files
Live publish for 26 February 2024.
2 parents 429a392 + 1d21ffa commit f04a7a8

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

powerapps-docs/developer/data-platform/build-and-package.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build and package plug-in code
33
description: Learn about building plug-in code into assemblies and packages for later registration and upload to the Microsoft Dataverse service.
4-
ms.date: 02/20/2024
4+
ms.date: 02/26/2024
55
ms.reviewer: pehecke
66
ms.topic: article
77
author: divkamath
@@ -57,6 +57,9 @@ When you upload your NuGet package, any assemblies containing classes that imple
5757

5858
At runtime, Dataverse copies the contents of the NuGet package from the `PluginPackage` row and extracts it to the sandbox runtime. This way, any dependent assemblies needed for the plug-in are available.
5959

60+
> [!IMPORTANT]
61+
> The name and version of the plug-in package cannot be changed once created. Attempting to do so using an API call results in an error.
62+
6063
### Signed assemblies are not required
6164

6265
You aren't required to sign plug-in assemblies used in plug-in packages.

powerapps-docs/developer/test-engine/yaml.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Power Apps Test Engine YAML format (preview)"
33
description: Describes the YAML format for test following the same guidelines as Power Fx.
44
author: pvillads
55
ms.author: pvillads
6-
ms.date: 08/11/2023
6+
ms.date: 02/23/2024
77
ms.reviewer: jdaly
88
ms.topic: article
99
contributors:
@@ -24,11 +24,11 @@ View the [PowerApps-TestEngine/samples](https://github.com/microsoft/PowerApps-T
2424

2525
| Property | Description |
2626
|---|---|
27-
| [test](#test) | Defines one test suite, the test cases in the test suite and configuration specific to the test suite |
27+
| [testSuite](#testsuite) | Defines one test suite, the test cases in the test suite and configuration specific to the test suite |
2828
| [testSettings](#testsettings) | Defines settings for the test suite that are reused across multiple test cases |
2929
| [environmentVariables](#environment-variables)| Defines variables that could potentially change as the app is ported across different environments |
3030

31-
## test
31+
## testSuite
3232

3333
Used to define one test.
3434

@@ -65,9 +65,9 @@ For Sharepoint/Dataverse/Connector apps, `requestURL` and `method` can be the sa
6565

6666
| Property | Required | Description |
6767
|---|---|---|
68-
| `testCaseName` | Yes | The name of the test case, it's used in reporting success and failure |
68+
| `testCaseName` | Yes | The name of the test case that is used in reporting success and failure |
6969
| `testCaseDescription` | No | Additional information describes what the test case does |
70-
| `testSteps` | Yes | A set of Power FX functions describing the steps needed to perform the test case |
70+
| `testSteps` | Yes | A set of Power Fx functions describing the steps needed to perform the test case |
7171

7272
#### test TestSteps
7373

0 commit comments

Comments
 (0)