Sharkable 0.0.24

dotnet add package Sharkable --version 0.0.24
                    
NuGet\Install-Package Sharkable -Version 0.0.24
                    
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="Sharkable" Version="0.0.24" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sharkable" Version="0.0.24" />
                    
Directory.Packages.props
<PackageReference Include="Sharkable" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Sharkable --version 0.0.24
                    
#r "nuget: Sharkable, 0.0.24"
                    
#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.
#addin nuget:?package=Sharkable&version=0.0.24
                    
Install Sharkable as a Cake Addin
#tool nuget:?package=Sharkable&version=0.0.24
                    
Install Sharkable as a Cake Tool

Sharkable

a dotnet minimal api framework collection

Usage

automatic dependency injection

//first add extension
using Sharkable
builder.Services.AddShark();
//for aot users please specify assemblies by youself and avoid code trim
build.Services.AddShark([typeof(Program).Assembly]);

[ScopedService] //inject class as a scoped service by the given attribute
public class Monitor : IMonitor
{
    public void Show()
    {
        ...
    }
}

//map an endpoint and it works!
app.MapGet("/monitor",([FromServices]IMonitor monitor) =>
{
    monitor.Show();
});

endpoint auto mapper (new style)

create a new class

public class TestEndpoint : ISharkEndpoint
{
    public void AddRoutes(IEndpointRouteBuilder app)
    {
        app.MapGet("show", ()=>"test result");
    }
}

//will now generate a http get method with the url
// api/test/show

endpoint auto mapper (old style)

create a new class

[SharkEndpoint]
public class TestEndpoint
{
    [SharkMethod("show", SharkHttpMethod.GET)]
    public void Show()
    {
        ...
    }
}

//will now generate a http get method with the url
// api/test/show

for more use sample please see Sharkable.Sample project

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Sharkable:

Package Downloads
Sharkable.AutoCrud.SqlSugar

a dotnet minimal api framework collection aimed to support aot

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.24 128 10/2/2024
0.0.23 117 9/27/2024
0.0.21 113 9/25/2024
0.0.20 114 9/24/2024
0.0.19 116 9/24/2024
0.0.18 117 9/24/2024
0.0.17 106 9/23/2024
0.0.16 101 9/21/2024
0.0.15 99 9/19/2024
0.0.14 95 9/19/2024
0.0.13 104 9/19/2024
0.0.12 98 9/18/2024
0.0.11 105 9/17/2024
0.0.10 108 9/17/2024
0.0.9 107 9/16/2024
0.0.8 133 9/16/2024
0.0.6 153 9/12/2024
0.0.4 160 9/11/2024
0.0.2 154 9/3/2024
0.0.1 144 9/2/2024

add swagger ui options