Skip to content

Commit

Permalink
initial code
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed May 2, 2020
1 parent eefce8a commit 646f314
Show file tree
Hide file tree
Showing 7 changed files with 102 additions and 2 deletions.
Empty file added CHANGELOG.md
Empty file.
35 changes: 35 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<Project>
<PropertyGroup>
<MsBuildAllProjects>$(MsBuildAllProjects);$(MsBuildThisFileFullPath)</MsBuildAllProjects>
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>0.0.1-preview-00</VersionPrefix>
<Copyright>Copyright © 2020 Stef Heyenrath</Copyright>
<Authors>Stef Heyenrath</Authors>
<PackageReleaseNotes>See CHANGELOG.md</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/StefH/Pulumi.Azure.Constants</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/StefH/Pulumi.Azure.Constants</RepositoryUrl>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
<None Include="../../resources/icon.png" Pack="true" PackagePath=""/>
</ItemGroup>

<Choose>
<!-- The environment variable `Prerelease` is set in the azure-pipelines.yml file. -->
<When Condition=" '$(Prerelease)' != '' ">
<PropertyGroup>
<!-- Set the version to x.x.x.x-{Prerelease}-1{Build_BuildId} (this is same buildId as defined in the azure-pipelines.yml file). -->
<VersionSuffix>$(Prerelease)-1$(BUILD_BUILDID)</VersionSuffix>
</PropertyGroup>
</When>
</Choose>
</Project>
3 changes: 3 additions & 0 deletions GitHubReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
https://github.com/StefH/GitHubReleaseNotes

GitHubReleaseNotes.exe --output CHANGELOG.md --skip-empty-releases --exclude-labels question invalid doc --version 0.0.1
40 changes: 40 additions & 0 deletions Pulumi.Azure.Extensions Solution.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29911.84
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{BA564CB5-1908-41F9-A32A-3535BBE0E8C6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{845A8FA6-E56E-4BB4-AD92-29093BB2CA09}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{01DFE66D-E850-4ADC-A0FC-A3A13B896CDA}"
ProjectSection(SolutionItems) = preProject
CHANGELOG.md = CHANGELOG.md
Directory.Build.props = Directory.Build.props
GitHubReleaseNotes.txt = GitHubReleaseNotes.txt
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Pulumi.Azure.Extensions", "src\Pulumi.Azure.Extensions\Pulumi.Azure.Extensions.csproj", "{C7F2E3E7-05CE-4409-AC94-A0557B5B8C13}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C7F2E3E7-05CE-4409-AC94-A0557B5B8C13}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C7F2E3E7-05CE-4409-AC94-A0557B5B8C13}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C7F2E3E7-05CE-4409-AC94-A0557B5B8C13}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C7F2E3E7-05CE-4409-AC94-A0557B5B8C13}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C7F2E3E7-05CE-4409-AC94-A0557B5B8C13} = {BA564CB5-1908-41F9-A32A-3535BBE0E8C6}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {FC1E6DF8-EC39-439B-ABF0-EE3786C5C0F6}
EndGlobalSection
EndGlobal
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# Pulumi.Azure.Extensions
This repository contains extensions to Pulumi Azure (e.g. BlobCollection)
[![NuGet](https://buildstats.info/nuget/Pulumi.Azure.Extensions)](https://www.nuget.org/packages/Pulumi.Azure.Extensions)

# Pulumi.Azure.Constants
Additional extensions for Microsoft Azure resources with [Pulumi Azure](https://github.com/pulumi/pulumi-azure).

The following extensions are defined:

### Storage

#### BlobCollection

...todo...
Binary file added resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/Pulumi.Azure.Extensions/Pulumi.Azure.Extensions.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<Description>Additional extensions for Microsoft Azure resources with Pulumi.Azure</Description>
<PackageTags>Pulumi;Azure;Microsoft;Extensions;Storage</PackageTags>
<ProjectGuid>{C7F2E3E7-05CE-4409-AC94-A0557B5B8C13}</ProjectGuid>
</PropertyGroup>

</Project>

0 comments on commit 646f314

Please sign in to comment.