Sketch7.Multitenancy

Multitenancy abstractions and core services for .NET Standard.


Keywords
multitenant, multitenancy, grace, orleans, abstractions, core, aspnet, aspnet-core, aspnetcore, csharp, dotnetcore, netstandard
License
MIT
Install
Install-Package Sketch7.Multitenancy -Version 0.1.0-dev1

Documentation

Dotnet Multitenancy

CircleCI

Multitenancy library for .NET Standard

Quick links

Change logs | Project Repository

Features

  • Grace
  • aspnet core support
  • Microsoft Orleans support

Installation

Available for .NET Standard 2.0+

NuGet

PM> Install-Package FluentlyHttpClient

csproj

<PackageReference Include="FluentlyHttpClient" Version="*" />

Usage

Configure

Add services via .AddFluentlyHttpClient().

// using Startup.cs (can be elsewhere)
public void ConfigureServices(IServiceCollection services)
{
    services.AddFluentlyHttpClient();
}

Basic usage

todo

Contributing

Setup Machine for Development

Install/setup the following:

  • NodeJS v8+
  • Visual Studio Code or similar code editor

Commands

# run tests
npm test

# bump version
npm version minor --no-git-tag # major | minor | patch | prerelease

# nuget pack (only)
npm run pack

# nuget publish dev (pack + publish + clean)
npm run publish:dev