![]() |
VOOZH | about |
dotnet add package Aiursoft.WebTools --version 10.0.13
NuGet\Install-Package Aiursoft.WebTools -Version 10.0.13
<PackageReference Include="Aiursoft.WebTools" Version="10.0.13" />
<PackageVersion Include="Aiursoft.WebTools" Version="10.0.13" />Directory.Packages.props
<PackageReference Include="Aiursoft.WebTools" />Project file
paket add Aiursoft.WebTools --version 10.0.13
#r "nuget: Aiursoft.WebTools, 10.0.13"
#:package Aiursoft.WebTools@10.0.13
#addin nuget:?package=Aiursoft.WebTools&version=10.0.13Install as a Cake Addin
#tool nuget:?package=Aiursoft.WebTools&version=10.0.13Install as a Cake Tool
👁 MIT licensed
👁 NuGet version (Aiursoft.WebTools)
A collection of tools for web development.
To install Aiursoft.WebTools to your project from nuget.org:
dotnet add package Aiursoft.WebTools
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();
}
}
We provide a QRCode generation service for you to generate QRCode image from a string.
var base64 = _qrCodeService.ToQRCodeBase64(somestring);
We provide some useful extensions for HttpContext:
var isWeChat = HttpContext.IsWeChat();
var isMobile = HttpContext.IsMobileBrowser();
var allowTrack = HttpContext.AllowTrack();
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 | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 2 NuGet packages that depend on Aiursoft.WebTools:
| Package | Downloads |
|---|---|
|
Aiursoft.AiurEventSyncer.WebExtends
Nuget package of 'WebExtends' provided by Aiursoft |
|
|
Aiursoft.UiStack
Nuget package of 'UiStack' provided by Aiurosft |
Showing the top 1 popular GitHub repositories that depend on Aiursoft.WebTools:
| Repository | Stars |
|---|---|
|
AiursoftWeb/Kahla
Kahla is a cross-platform business messaging app. Mirror of https://gitlab.aiursoft.com/aiursoft/kahla
|
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.13 | 486 | 5/26/2026 |
| 10.0.12 | 282 | 5/15/2026 |
| 10.0.11 | 274 | 5/4/2026 |
| 10.0.10 | 97 | 5/4/2026 |
| 10.0.9 | 678 | 3/26/2026 |
| 10.0.8 | 964 | 1/28/2026 |
| 10.0.7 | 462 | 1/18/2026 |
| 10.0.6 | 225 | 1/11/2026 |
| 10.0.4 | 283 | 12/31/2025 |
| 10.0.3 | 238 | 12/26/2025 |
| 10.0.2 | 298 | 11/29/2025 |
| 10.0.1 | 248 | 11/15/2025 |
| 9.0.10 | 274 | 11/6/2025 |
| 9.0.9 | 372 | 9/8/2025 |
| 9.0.8 | 240 | 9/7/2025 |
| 9.0.7 | 281 | 9/5/2025 |
| 9.0.6 | 249 | 9/5/2025 |
| 9.0.5 | 240 | 9/4/2025 |
| 9.0.4 | 377 | 7/15/2025 |
| 9.0.3 | 433 | 3/31/2025 |