Aiursoft.WebTools 8.0.20

dotnet add package Aiursoft.WebTools --version 8.0.20
NuGet\Install-Package Aiursoft.WebTools -Version 8.0.20
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="Aiursoft.WebTools" Version="8.0.20" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aiursoft.WebTools --version 8.0.20
#r "nuget: Aiursoft.WebTools, 8.0.20"
#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 Aiursoft.WebTools as a Cake Addin
#addin nuget:?package=Aiursoft.WebTools&version=8.0.20

// Install Aiursoft.WebTools as a Cake Tool
#tool nuget:?package=Aiursoft.WebTools&version=8.0.20

Aiursoft WebTools

MIT licensed Pipeline stat Test Coverage NuGet version (Aiursoft.WebTools) ManHours

A collection of tools for web development.

Installation

To install Aiursoft.WebTools to your project from nuget.org:

dotnet add package Aiursoft.WebTools

Features

  • Easier application startup
  • QRCode generation
  • HttpContext extensions

Easier application startup

It is a common practice to create a Program class and a Startup class in a ASP.NET Core application. However, it is a little bit annoying to write the same code again and again. So we created a Extends class to help you to write less code.

using System.Reflection;
using Aiursoft.WebTools.Models;

namespace DemoApp;

public class Program
{
    public static async Task Main(string[] args)
    {
        var app = Extends.App<Startup>(args);
        await app.RunAsync();
    }
}

public class Startup : IWebStartup
{
    public void ConfigureServices(IConfiguration configuration, IWebHostEnvironment environment, IServiceCollection services)
    {
        services
            .AddControllers()
            .AddApplicationPart(Assembly.GetExecutingAssembly());
    }

    public void Configure(WebApplication app)
    {
        app.UseRouting();
        app.MapDefaultControllerRoute();
    }
}

QRCode generation

We provide a QRCode generation service for you to generate QRCode image from a string.

var base64 = _qrCodeService.ToQRCodeBase64(somestring);

HttpContext extensions

We provide some useful extensions for HttpContext:

var isWeChat = HttpContext.IsWeChat();
var isMobile = HttpContext.IsMobileBrowser();
var allowTrack = HttpContext.AllowTrack();

How to contribute

There are many ways to contribute to the project: logging bugs, submitting pull requests, reporting issues, and creating suggestions.

Even if you with push rights on the repository, you should create a personal fork and create feature branches there when you need them. This keeps the main repository clean and your workflow cruft out of sight.

We're also interested in your feedback on the future of this project. You can submit a suggestion or feature request through the issue tracker. To make this process more effective, we're asking that these include more information to help define them more clearly.

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Aiursoft.WebTools:

Package Downloads
Aiursoft.SDK

The base class, tools and extends for Aiursoft web apps.

Aiursoft.AiurEventSyncer.WebExtends

Nuget package of 'WebExtends' provided by Aiursoft

MoongladePure.Web

Nuget package of 'Web' provided by MoongladePure

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aiursoft.WebTools:

Repository Stars
AiursoftWeb/Infrastructures
Mirror of: https://gitlab.aiursoft.cn/aiursoft/infrastructures
Version Downloads Last updated
8.0.20 64 3/27/2024
8.0.19 56 3/26/2024
8.0.18 118 3/24/2024
8.0.17 91 3/20/2024
8.0.16 98 3/17/2024
8.0.15 75 3/17/2024
8.0.14 83 3/17/2024
8.0.13 77 3/17/2024
8.0.12 105 3/16/2024
8.0.11 80 3/16/2024
8.0.10 76 3/16/2024
8.0.9 76 3/15/2024
8.0.8 63 3/14/2024
8.0.7 71 3/14/2024
8.0.6 105 3/13/2024
8.0.5 86 3/13/2024
8.0.4 87 3/13/2024
8.0.2 133 2/28/2024
8.0.1 136 2/21/2024
8.0.0 164 2/19/2024
7.0.35 319 2/4/2024
7.0.34 137 2/2/2024
7.0.33 184 2/2/2024
7.0.32 142 1/30/2024
7.0.31 276 1/18/2024
7.0.30 69 1/18/2024
7.0.29 172 1/11/2024
7.0.28 279 1/5/2024
7.0.27 176 1/5/2024
7.0.26 112 1/5/2024
7.0.25 164 1/4/2024
7.0.24 376 1/4/2024
7.0.23 112 1/4/2024
7.0.22 284 12/26/2023
7.0.21 82 12/26/2023
7.0.20 193 12/24/2023
7.0.19 179 12/22/2023
7.0.18 86 12/22/2023
7.0.17 80 12/21/2023
7.0.16 241 12/12/2023
7.0.15 271 12/11/2023
7.0.14 88 12/11/2023
7.0.13 101 12/10/2023
7.0.12 86 12/10/2023
7.0.11 104 12/1/2023
7.0.10 247 11/26/2023
7.0.9 298 11/12/2023
7.0.8 186 11/2/2023
7.0.7 103 11/2/2023
7.0.6 147 10/31/2023
7.0.5 246 10/15/2023
7.0.4 331 9/18/2023
7.0.3 216 9/12/2023
7.0.2 159 9/5/2023
7.0.1 88 9/5/2023
7.0.0 96 9/5/2023
6.0.25 237 7/13/2023
6.0.24 399 6/26/2023
6.0.23 166 6/26/2023
6.0.22 252 6/18/2023
6.0.21 200 6/14/2023
6.0.20 195 6/5/2023
6.0.19 204 5/27/2023
6.0.18 208 5/27/2023
6.0.17 220 5/27/2023
6.0.16 206 5/27/2023
6.0.15 203 5/27/2023
6.0.14 203 5/27/2023
6.0.13 208 5/19/2023
6.0.12 199 5/19/2023
6.0.11 194 5/19/2023
6.0.10 200 5/19/2023
6.0.9 191 5/19/2023
6.0.8 234 5/11/2023
6.0.7 2,285 8/4/2022
6.0.6 831 7/6/2022
6.0.5 1,070 5/13/2022
6.0.0 937 3/27/2022
5.0.9 971 5/31/2021
5.0.8 826 5/23/2021
5.0.7 802 5/7/2021
5.0.6 837 4/14/2021
5.0.5 884 2/16/2021
5.0.4 840 1/29/2021
5.0.3 849 1/27/2021
5.0.2 934 12/9/2020
5.0.1 842 11/30/2020
5.0.0 758 11/14/2020
3.2.11 1,017 10/18/2020
3.2.10 913 10/3/2020
3.2.9 868 10/2/2020
3.2.8 938 9/10/2020
3.2.7 909 9/2/2020
3.2.6 994 8/12/2020
3.2.5 992 7/31/2020
3.2.4 978 7/3/2020
3.2.3 964 6/25/2020
3.2.2 1,004 6/18/2020
3.2.1 1,022 6/5/2020
3.2.0 982 6/4/2020
3.1.14 1,157 6/4/2020
3.1.13 1,123 5/25/2020
3.1.12 1,087 5/20/2020
3.1.11 1,058 5/18/2020
3.1.10 1,065 5/18/2020
3.1.9 1,040 5/17/2020
3.1.8 1,015 5/12/2020
3.1.7 1,077 5/2/2020
3.1.6 1,130 5/1/2020
3.1.5 1,066 4/21/2020
3.1.4 767 4/19/2020
3.1.3 781 4/15/2020
3.1.2.2 1,690 4/6/2020
3.1.2.1 1,554 3/19/2020
3.1.2 597 3/13/2020
0.0.1 138 6/26/2023