Skip to content

Commit 00083f0

Browse files
authored
Merge pull request #4769 from MicrosoftDocs/staging
Merge latest change to live
2 parents a74ae7e + a711f7b commit 00083f0

File tree

54 files changed

+225
-543
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+225
-543
lines changed

developer/TOC.yml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -887,39 +887,13 @@
887887
- name: Writing Help for Windows PowerShell Cmdlets
888888
href: ./help/writing-help-for-windows-powershell-cmdlets.md
889889
- name: Writing Help for Windows PowerShell Providers
890-
href: ./help/writing-help-for-windows-powershell-providers.md
891890
items:
892-
- name: How to Create a Provider Help Topic
893-
href: ./help/how-to-create-a-provider-help-topic.md
894-
- name: How to Add the Provider Name
895-
href: ./help/how-to-add-the-provider-name.md
896-
- name: How to Add the Provider Drives
897-
href: ./help/how-to-add-the-provider-drives.md
898-
- name: How to Add the Provider Synopsis
899-
href: ./help/how-to-add-the-provider-synopsis.md
900-
- name: How to Add a Provider Description
901-
href: ./help/how-to-add-a-provider-description.md
902-
- name: How to Add Capabilities
903-
href: ./help/how-to-add-capabilities.md
904-
- name: How to Add Tasks to a Provider Help Topic
905-
href: ./help/how-to-add-tasks-to-a-provider-help-topic.md
906891
- name: How to Add Dynamic Parameters to a Provider Help Topic
907892
href: ./help/how-to-add-dynamic-parameters-to-a-provider-help-topic.md
908-
- name: How to Add Notes to a Provider Help Topic
909-
href: ./help/how-to-add-notes-to-a-provider-help-topic.md
910893
- name: How to Add a See Also Section to a Provider Help Topic
911894
href: ./help/how-to-add-a-see-also-section-to-a-provider-help-topic.md
912895
- name: Writing Help for Windows PowerShell Scripts and Functions
913896
href: ./help/writing-help-for-windows-powershell-scripts-and-functions.md
914-
items:
915-
- name: Writing XML-Based Help Topics for Scripts and Functions
916-
href: ./help/writing-xml-based-help-topics-for-scripts-and-functions.md
917-
- name: Writing Help for Windows PowerShell Snap-ins
918-
href: ./help/writing-help-for-windows-powershell-snap-ins.md
919-
- name: Writing Custom Cmdlet Help for Windows PowerShell Providers
920-
href: ./help/writing-custom-cmdlet-help-for-windows-powershell-providers.md
921-
- name: Writing Windows PowerShell About Help
922-
href: ./help/writing-windows-powershell-about-help.md
923897
- name: Writing Comment-Based Help Topics
924898
href: ./help/writing-comment-based-help-topics.md
925899
items:
@@ -936,7 +910,6 @@
936910
- name: Examples of Comment-Based Help
937911
href: ./help/examples-of-comment-based-help.md
938912
- name: Writing XML-Based Help Topics for Commands
939-
href: ./help/writing-xml-based-help-topics-for-commands.md
940913
items:
941914
- name: How to Create the Cmdlet Help File
942915
href: ./help/how-to-create-the-cmdlet-help-file.md

developer/docfx.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"build": {
3-
"content": [
4-
{ "files": ["**/**.yml", "**/**.md"], "exclude": ["**/obj/**"] }
5-
],
3+
"content": [{
4+
"files": ["**/**.yml", "**/**.md"],
5+
"exclude": ["**/obj/**","README.md"]
6+
}],
67
"globalMetadata": {
78
"toc_preview": true,
89
"breadcrumb_path": "bread/toc.yml",
@@ -19,9 +20,10 @@
1920
"feedback_github_repo": "MicrosoftDocs/PowerShell-Docs",
2021
"feedback_product_url": "https://github.com/PowerShell/PowerShell/issues/new/choose"
2122
},
22-
"resource": [
23-
{ "files": ["**/media/**", "**/*.png", "**/*.gif", "**/*.jpeg", "**/*.jpg", "**/*.svg"], "exclude": ["**/obj/**", "**/includes/**"] }
24-
],
23+
"resource": [{
24+
"files": ["**/media/**", "**/*.png", "**/*.gif", "**/*.jpeg", "**/*.jpg", "**/*.svg"],
25+
"exclude": ["**/obj/**", "**/includes/**"]
26+
}],
2527
"template": "op.html",
2628
"dest": "developer",
2729
"markdownEngineName": "markdig"

developer/help/how-to-add-a-provider-description.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

developer/help/how-to-add-capabilities.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

developer/help/how-to-add-dynamic-parameters-to-a-provider-help-topic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This section explains how to populate the **DYNAMIC PARAMETERS** section of a pr
1717

1818
The dynamic parameters that are documented in a provider help topic are the dynamic parameters that the provider adds to the cmdlet or function when the cmdlet or function is used in the provider drive.
1919

20-
Dynamic parameters can also be documented in custom cmdlet help for a provider. When writing both provider help and custom cmdlet help for a provider, include the dynamic parameter documentation in both documents. For more information about custom cmdlet help, see [Writing Windows PowerShell Custom Cmdlet Help for Providers](./writing-custom-cmdlet-help-for-windows-powershell-providers.md).
20+
Dynamic parameters can also be documented in custom cmdlet help for a provider. When writing both provider help and custom cmdlet help for a provider, include the dynamic parameter documentation in both documents.
2121

2222
If a provider does not implement any dynamic parameters, the provider help topic contains an empty `DynamicParameters` element.
2323

developer/help/how-to-add-notes-to-a-provider-help-topic.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

developer/help/how-to-add-tasks-to-a-provider-help-topic.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

developer/help/how-to-add-the-provider-drives.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

developer/help/how-to-add-the-provider-name.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

developer/help/how-to-add-the-provider-synopsis.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)