Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Update ExportTaxonomy.cs #2462

Merged
merged 5 commits into from
Feb 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Commands/Taxonomy/ExportTaxonomy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ namespace SharePointPnP.PowerShell.Commands.Taxonomy
Remarks = "Exports the full taxonomy the file output.txt",
SortOrder = 2)]
[CmdletExample(
Code = @"PS:> Export-PnPTaxonomy -Path c:\output.txt -TermSet f6f43025-7242-4f7a-b739-41fa32847254",
Code = @"PS:> Export-PnPTaxonomy -Path c:\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254",
Remarks = "Exports the term set with the specified id",
SortOrder = 3)]
[CmdletExample(
Code = @"PS:> Export-PnPTaxonomy -Path c:\output.txt -TermSet f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044",
Code = @"PS:> Export-PnPTaxonomy -Path c:\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044",
Remarks = "Exports the term set with the specified id using Norwegian labels",
SortOrder = 4)]
public class ExportTaxonomy : PnPCmdlet
Expand Down