Skip to content

Commit 0449f1b

Browse files
authored
Merge pull request #2 from bganapa/dev
Moving files from private repo to public repo with all the history
2 parents b243a08 + 7a306cc commit 0449f1b

File tree

569 files changed

+100094
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

569 files changed

+100094
-1
lines changed

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Set default behaviour, in case users don't have core.autocrlf set.
2+
* text=auto
3+
4+
*.sln text eol=crlf
5+
*.cs text eol=crlf
6+
*.csproj text eol=crlf
7+
*.ps1 text eol=crlf
8+
*.psd1 text eol=crlf
9+
*.psm1 text eol=crlf
10+
*.ps1xml text eol=crlf

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
bin
2+
obj
3+
.vs
4+
generated
5+
internal
6+
exports
7+
src/**/tools
8+
src/**/resources
9+
.gitignore
10+
.gitattributes

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ We prefer all communications to be in English.
3838

3939
Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd).
4040

41-
<!-- END MICROSOFT SECURITY.MD BLOCK -->
41+
<!-- END MICROSOFT SECURITY.MD BLOCK -->
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.0.1</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>Az.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>Az.BootStrapper</id>
5+
<version>0.1.0-preview</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: Az.BootStrapper cmdlets</description>
12+
<releaseNotes></releaseNotes>
13+
<copyright>Microsoft Corporation. All rights reserved.</copyright>
14+
<tags>Az.BootStrapper PSModule AzureStack</tags>
15+
</metadata>
16+
<files>
17+
<file src="Module\**\*" />
18+
</files>
19+
</package>

0 commit comments

Comments
 (0)