Skip to content

Commit

Permalink
help
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-shandar committed Sep 14, 2017
1 parent 35915ea commit e89a548
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = ".\AzureRM.Compute.Experiments.psm1"

# Version number of this module.
ModuleVersion = '1.0.2'
ModuleVersion = '1.0.4'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<#
.ExternalHelp AzureRM.Compute.Experiments-help.xml
#>
function New-AzVm {
[CmdletBinding()]
param (
Expand Down
2 changes: 2 additions & 0 deletions experiments/Compute.Experiments/publish-dev.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
$out = "..\build\AzureRM.Compute.Experiments\"
$repository = "sergey"
$dep = @("AzureRM.Resources", "AzureRM.Network", "AzureRM.Compute")
Remove-Item $out -Recurse
mkdir $out
Copy-Item .\AzureRM.Compute.Experiments.psd1 $out
Copy-Item .\AzureRM.Compute.Experiments.psm1 $out
New-ExternalHelp -Path .\docs\ -OutputPath $out
foreach ($d in $dep) {
Install-Module $d -Repository $repository
}
Expand Down

0 comments on commit e89a548

Please sign in to comment.