Skip to content

Commit 82b604e

Browse files
authored
Azurerm.bootstrapper - Updating ProfileMap during Install and Use-AzureRMProfile cmdlet (#63)
* Porting AzureRM.BootStrapper module version 0.5.0 to AzureStack repo The module code is same as that of in azure powershell AzureRM repo Build scripts added * Updating ProfileMap during Install and Use-AzureRMProfile cmdlet * Adding tools folder in azurerm branch
1 parent 5be14e6 commit 82b604e

33 files changed

+7380
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<Version>0.6.0</Version>
4+
<LangVersion>7.1</LangVersion>
5+
<TargetFramework>netstandard2.0</TargetFramework>
6+
<OutputType>Module</OutputType>
7+
<OutputPath>./bin</OutputPath>
8+
<PublishDir>$(OutputPath)</PublishDir>
9+
<NuspecFile>AzureRM.BootStrapper.nuspec</NuspecFile>
10+
<NoPackageAnalysis>true</NoPackageAnalysis>
11+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
12+
<WarningsAsErrors />
13+
</PropertyGroup>
14+
</Project>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
3+
<metadata>
4+
<id>AzureRM.BootStrapper</id>
5+
<version>0.6.0</version>
6+
<authors>Microsoft Corporation</authors>
7+
<owners>Microsoft Corporation</owners>
8+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
9+
<licenseUrl>https://aka.ms/azps-license</licenseUrl>
10+
<projectUrl>https://github.com/Azure/azurestack-powershell</projectUrl>
11+
<description>Microsoft Azure PowerShell: AzureRM.BootStrapper cmdlets</description>
12+
<releaseNotes></releaseNotes>
13+
<copyright>Microsoft Corporation. All rights reserved.</copyright>
14+
<tags>AzureRM.BootStrapper PSModule AzureStack</tags>
15+
</metadata>
16+
<files>
17+
<file src="Module\**\*" />
18+
</files>
19+
</package>

0 commit comments

Comments
 (0)