laurentiustamate94 / cnab-netstandard

.NET Standard 2.0 Client Library for CNAB

Home Page:https://cnab.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

.NET Standard 2.0 Client Library for CNAB

Work in Progress library for working with Cloud Native Application Bundles in C#.

Usage

static async Task Main(string[] args)
{
    var bundle = await Bundle.LoadUnsignedAsync("bundles/thin-bundle.json");

    Console.WriteLine(
        JsonConvert.SerializeObject(bundle, Formatting.Indented));
}

Contributing

In order to contribute to this project, you need .NET Core SDK 2.2:

$ dotnet --version
2.2.103

$ dotnet build

$ cd examples && dotnet run
An example 'thin' helloworld Cloud-Native Application Bundle

If you want to contribute, any of the following is a great starting point:

  • adding unit tests
  • building invocation images
  • installing bundles
  • adding support for claims and signing.

The CNAB Specification and Duffle, the reference implementation are a great starting point. Also make sure to check Porter and Docker App.

About

.NET Standard 2.0 Client Library for CNAB

https://cnab.io

License:MIT License


Languages

Language:C# 79.7%Language:JavaScript 19.3%Language:Makefile 1.0%