dotnet.multitenancy
1.0.0
Multitenancy library for .NET Standard
Quick links
Change logs | Project Repository
Available for .NET Standard 2.0+
PM> Install-Package FluentlyHttpClient
<PackageReference Include="FluentlyHttpClient" Version="*" />Add services via .AddFluentlyHttpClient().
// using Startup.cs (can be elsewhere)
public void ConfigureServices(IServiceCollection services)
{
services.AddFluentlyHttpClient();
}todo
Install/setup the following:
# 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