Skip to content

Commit 7f7e76b

Browse files
committed
Merge pull request Azure#46 from huangpf/crp2
re-add the help psd1 file for authoring helps more conveniently
2 parents b3b8604 + bd892b7 commit 7f7e76b

File tree

3 files changed

+99
-0
lines changed

3 files changed

+99
-0
lines changed

setup/azurecmdfiles.wxi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@
106106
<Component Id="cmpEDFE5B7CD43B10FD4C5F82D443DA0C5D" Guid="*">
107107
<File Id="fil3E1AD32F04CFF244686C4DD4C07D2F19" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\Compute\Microsoft.Azure.Commands.Compute.dll" />
108108
</Component>
109+
<Component Id="cmp7F2719BE7827D3FDDF69D7ACB6135115" Guid="*">
110+
<File Id="fil5F7831CF20346B8506EC74012F655FD2" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\Compute\Microsoft.Azure.Commands.Compute.dll-Help.psd1" />
111+
</Component>
109112
<Component Id="cmpD5624BF8D78E80B0526773DE6E4FD2D2" Guid="*">
110113
<File Id="fil81AE4D49FE4C59DD6526396037D718F7" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\Compute\Microsoft.Azure.Commands.Compute.dll-Help.xml" />
111114
</Component>
@@ -3041,6 +3044,7 @@
30413044
<ComponentRef Id="cmp2E3CCDF954A1857E106A7052882B0C1F" />
30423045
<ComponentRef Id="cmp1A9472BC4D15B6030BB6F05D11229806" />
30433046
<ComponentRef Id="cmpEDFE5B7CD43B10FD4C5F82D443DA0C5D" />
3047+
<ComponentRef Id="cmp7F2719BE7827D3FDDF69D7ACB6135115" />
30443048
<ComponentRef Id="cmpD5624BF8D78E80B0526773DE6E4FD2D2" />
30453049
<ComponentRef Id="cmp62942A24352ADC631A6C9DAE39D62F70" />
30463050
<ComponentRef Id="cmp479E4B1EF0A49C9845DB071F542F5392" />

src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@
196196
</ProjectReference>
197197
</ItemGroup>
198198
<ItemGroup>
199+
<None Include="Microsoft.Azure.Commands.Compute.dll-Help.psd1">
200+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
201+
</None>
199202
<None Include="Microsoft.Azure.Commands.Compute.format.ps1xml">
200203
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
201204
</None>
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
#
2+
# Module manifest for module 'Microsoft.Azure.Commands.Compute'
3+
#
4+
# Generated by: Microsoft Corporation
5+
#
6+
# Generated on: 04/01/2015
7+
#
8+
9+
@{
10+
11+
# Version number of this module.
12+
ModuleVersion = '0.0.1'
13+
14+
# ID used to uniquely identify this module
15+
GUID = 'B37DCEB6-F8A8-4C76-B1FC-9C35DFE08977'
16+
17+
# Author of this module
18+
Author = 'Microsoft Corporation'
19+
20+
# Company or vendor of this module
21+
CompanyName = 'Microsoft Corporation'
22+
23+
# Copyright statement for this module
24+
Copyright = '© Microsoft Corporation. All rights reserved.'
25+
26+
# Description of the functionality provided by this module
27+
Description = ''
28+
29+
# Minimum version of the Windows PowerShell engine required by this module
30+
PowerShellVersion = '3.0'
31+
32+
# Name of the Windows PowerShell host required by this module
33+
PowerShellHostName = ''
34+
35+
# Minimum version of the Windows PowerShell host required by this module
36+
PowerShellHostVersion = ''
37+
38+
# Minimum version of the .NET Framework required by this module
39+
DotNetFrameworkVersion = '4.0'
40+
41+
# Minimum version of the common language runtime (CLR) required by this module
42+
CLRVersion='4.0'
43+
44+
# Processor architecture (None, X86, Amd64, IA64) required by this module
45+
ProcessorArchitecture = 'None'
46+
47+
# Modules that must be imported into the global environment prior to importing this module
48+
RequiredModules = @()
49+
50+
# Assemblies that must be loaded prior to importing this module
51+
RequiredAssemblies = @()
52+
53+
# Script files (.ps1) that are run in the caller's environment prior to importing this module
54+
ScriptsToProcess = @()
55+
56+
# Type files (.ps1xml) to be loaded when importing this module
57+
TypesToProcess = @(
58+
'.\Microsoft.Azure.Commands.Compute.Types.ps1xml'
59+
)
60+
61+
# Format files (.ps1xml) to be loaded when importing this module
62+
FormatsToProcess = @(
63+
'.\Microsoft.Azure.Commands.Compute.format.ps1xml'
64+
)
65+
66+
# Modules to import as nested modules of the module specified in ModuleToProcess
67+
NestedModules = @(
68+
'.\Microsoft.Azure.Commands.Compute.dll'
69+
)
70+
71+
# Functions to export from this module
72+
FunctionsToExport = '*'
73+
74+
# Cmdlets to export from this module
75+
CmdletsToExport = '*'
76+
77+
# Variables to export from this module
78+
VariablesToExport = '*'
79+
80+
# Aliases to export from this module
81+
AliasesToExport = @()
82+
83+
# List of all modules packaged with this module
84+
ModuleList = @()
85+
86+
# List of all files packaged with this module
87+
FileList = @()
88+
89+
# Private data to pass to the module specified in ModuleToProcess
90+
PrivateData = ''
91+
92+
}

0 commit comments

Comments
 (0)