Skip to content

. #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Aug 7, 2015
Merged

. #69

Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\HDInsight\Microsoft.Azure.Commands.HDInsight.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand Down Expand Up @@ -81,7 +82,9 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Microsoft.Azure.Commands.HDInsight.dll-help.psd1" />
<None Include="Microsoft.Azure.Commands.HDInsight.dll-help.psd1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="MSSharedLibKey.snk" />
<None Include="packages.config" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class WaitAzureHDInsightJobCommand : HDInsightCmdletBase
[Parameter(
Position = 0,
Mandatory = true,
HelpMessage = "Gets or sets the name of the resource group.")]
HelpMessage = "The name of the resource group.")]
public string ResourceGroupName { get; set; }

[Parameter(Mandatory = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class AddAzureHDInsightConfigValuesCommand : HDInsightCmdletBase
[Parameter(Position = 0,
Mandatory = true,
ValueFromPipeline = true,
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster")]
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster.")]
public AzureHDInsightConfig Config { get; set; }

[Parameter(HelpMessage = "Gets the Core Site configurations of this HDInsight cluster.")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AddAzureHDInsightMetastoreCommand : HDInsightCmdletBase
[Parameter(Position = 0,
Mandatory = true,
ValueFromPipeline = true,
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster")]
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster.")]
public AzureHDInsightConfig Config { get; set; }

[Parameter(Position = 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class AddAzureHDInsightScriptActionCommand : HDInsightCmdletBase
[Parameter(Position = 0,
Mandatory = true,
ValueFromPipeline = true,
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster")]
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster.")]
public AzureHDInsightConfig Config { get; set; }

[Parameter(Position = 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class AddAzureHDInsightStorageCommand : HDInsightCmdletBase
[Parameter(Position = 0,
Mandatory = true,
ValueFromPipeline = true,
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster")]
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster.")]
public AzureHDInsightConfig Config { get; set; }

[Parameter(Position = 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class SetAzureHDInsightDefaultStorageCommand : HDInsightCmdletBase
[Parameter(Position = 0,
Mandatory = true,
ValueFromPipeline = true,
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster")]
HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster.")]
public AzureHDInsightConfig Config { get; set; }

[Parameter(Position = 1,
Expand Down

This file was deleted.

Loading