Skip to content

kzu/Sleet.Azure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sleet.Azure

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

Installing

See https://www.nuget.org/packages/Sleet.Azure

Usage

You must provide the following three required properties:

    <!-- 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:

    <!-- 
      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:

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

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

About

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

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors