Skip to content

Commit e89a548

Browse files
help
1 parent 35915ea commit e89a548

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

experiments/Compute.Experiments/AzureRM.Compute.Experiments.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = ".\AzureRM.Compute.Experiments.psm1"
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0.2'
15+
ModuleVersion = '1.0.4'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

experiments/Compute.Experiments/AzureRM.Compute.Experiments.psm1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
<#
2+
.ExternalHelp AzureRM.Compute.Experiments-help.xml
3+
#>
14
function New-AzVm {
25
[CmdletBinding()]
36
param (

experiments/Compute.Experiments/publish-dev.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
$out = "..\build\AzureRM.Compute.Experiments\"
22
$repository = "sergey"
33
$dep = @("AzureRM.Resources", "AzureRM.Network", "AzureRM.Compute")
4+
Remove-Item $out -Recurse
45
mkdir $out
56
Copy-Item .\AzureRM.Compute.Experiments.psd1 $out
67
Copy-Item .\AzureRM.Compute.Experiments.psm1 $out
8+
New-ExternalHelp -Path .\docs\ -OutputPath $out
79
foreach ($d in $dep) {
810
Install-Module $d -Repository $repository
911
}

0 commit comments

Comments
 (0)