Skip to content

Commit

Permalink
Prepare for release v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhaopudark committed Sep 11, 2023
1 parent e940a31 commit 0e1d505
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Module/Private/BasicTools.Doc.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,4 @@ function Get-SortedNameWithDocFromScript{
}
$sorted_name_with_docs = $name_with_docs.GetEnumerator() | Sort-Object -Property Name
return $sorted_name_with_docs
}


}
2 changes: 1 addition & 1 deletion Module/Register.PrivateComponents.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
$local:ModuleInfo = @{
ModuleName = 'PSComputerManagementZp'
ScriptsToExport = Get-Item "${PSScriptRoot}\Public\*.ps1" | ForEach-Object { $_.FullName }
ScriptsNotToExport = Get-Item "${PSScriptRoot}\Private\*.ps1" | ForEach-Object { $_.FullName }
ScriptsNotToExport = Get-Item "${PSScriptRoot}\Private\*.ps1" | ForEach-Object { $_.FullName }
SortedFunctionsToExportWithDocs = Get-SortedNameWithDocFromScript -Path "${PSScriptRoot}\Public\*.ps1" -DocType 'Function'
SortedFunctionsNotToExportWithDocs = Get-SortedNameWithDocFromScript -Path "${PSScriptRoot}\Private\*.ps1" -DocType 'Function'
SortedClassesNotToExportWithDocs = Get-SortedNameWithDocFromScript -Path "${PSScriptRoot}\Private\*.ps1" -DocType 'Class'
Expand Down

0 comments on commit 0e1d505

Please sign in to comment.