Bracketcore.Sket 0.0.1-Beta

This is a prerelease version of Bracketcore.Sket.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Bracketcore.Sket --version 0.0.1-Beta
NuGet\Install-Package Bracketcore.Sket -Version 0.0.1-Beta
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Bracketcore.Sket" Version="0.0.1-Beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Bracketcore.Sket --version 0.0.1-Beta
#r "nuget: Bracketcore.Sket, 0.0.1-Beta"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Bracketcore.Sket as a Cake Addin
#addin nuget:?package=Bracketcore.Sket&version=0.0.1-Beta&prerelease

// Install Bracketcore.Sket as a Cake Tool
#tool nuget:?package=Bracketcore.Sket&version=0.0.1-Beta&prerelease

SKET

Sket is an easy api creator framework which take care of a lot of aspnet core setup, speeding up your api creation in no time. <hr/>

Getting started with Sket

Installation

Install the nuget pagckage of sket

Install-Package Sket

Import namespace into you webapi project Startup.cs file

using Bracketcore.Sket;

<hr/>

Basic initialization

In your Startup.cs file in the ConfigurationServices method add the below code

services.AddSket(new SketSettings
        {
            DatabaseName = "Database Name",
            JwtKey = "Your JWT Key",
            AuthType = AuthType.Jwt,
            DomainUrl = "Your domain Url",
            MongoSettings =MongoClientSettings.FromConnectionString(
                    Configuration["DatabaseSettings"]),
            ApiSetup = new List<ApiConfig>
            {
                new ApiConfig
                {
                    BaseUrl = "Your Api Url",
                    Endpoints = new List<string>
                    {
                        "Route01", "Route02"
                    }
                }
            }
        });
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.2-Beta 462 11/2/2020
0.1.0-Beta 396 10/29/2020
0.0.9-Beta 388 10/27/2020
0.0.8-Beta 404 10/24/2020
0.0.7-Beta 421 10/21/2020
0.0.6-Beta 472 10/13/2020
0.0.5-Beta 371 10/13/2020
0.0.4-Beta 452 10/12/2020
0.0.3-Beta 418 10/12/2020
0.0.2-Beta 427 10/10/2020
0.0.1-Beta 620 10/10/2020