Sleet.Azure 0.2.5

dotnet add package Sleet.Azure --version 0.2.5
NuGet\Install-Package Sleet.Azure -Version 0.2.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Sleet.Azure" Version="0.2.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sleet.Azure --version 0.2.5
#r "nuget: Sleet.Azure, 0.2.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Sleet.Azure as a Cake Addin
#addin nuget:?package=Sleet.Azure&version=0.2.5

// Install Sleet.Azure as a Cake Tool
#tool nuget:?package=Sleet.Azure&version=0.2.5

Sleet.Azure

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.5 3,946 11/30/2017
0.1.1 1,048 10/4/2017
0.1.0 961 10/4/2017

# Sleet.Azure

Provides the Sleet.Azure package for easily pushing packages to Azure storage-backed feeds

# Installing

See Sleet.Azure

# Usage

You must provide the following three required properties:

```xml
   <!-- Azure storage account to use -->
   <StorageAccount Condition="'$(StorageAccount)' == ''" />
   <!-- Azure storage access key for the connection -->
   <StorageAccessKey Condition="'$(StorageAccessKey)' == ''" />
   <!-- Azure storage container name where the feed will be stored -->
   <StorageContainer Condition="'$(StorageContainer)' == ''" />
```

and optionally:

```xml
   <!--
     Whether to validate and initialize the feed before pushing.
     Defaults to 'true', which is expensive and can safely be
     turned to 'false' after the first init/push operation.
    -->
   <SleetInit>true</SleetInit>
```

You specify the packages to push via the `Package` item group:

```xml
<ItemGroup>
   <Package Include="bin\*.nupkg" >
</ItemGroup>
```

And then invoke the `Push` target. Optionally, invoke `Init` the
first time you initialize the feed.