Sleet
Sleet is a static (serverless) NuGet package
feed generator, which supports for a JSON format as well as .netconfig
.
All the available settings
are supported via .netconfig
.
Some examples are:
- Azure Blob Storage-based feed:
[sleet "feed"]
type = azure
container = feed
connectionString = "DefaultEndpointsProtocol=https;AccountName=;AccountKey=;BlobEndpoint="
path = https://yourStorageAccount.blob.core.windows.net/feed/
- AWS S3-based feed:
[sleet "feed"]
type = s3
path = https://s3.amazonaws.com/my-bucket-feed/
bucketName = my-bucket-feed
region = us-west-2
accessKeyId = IAM_ACCESS_KEY_ID
secretAccessKey = IAM_SECRET_ACCESS_KEY
- Local directory feed:
gitconfig [sleet "myLocalFeed"] type = local path = C:\\myFeed
See the docs for all available settings.