RsCode.AspNetCore
1.6.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package RsCode.AspNetCore --version 1.6.1
NuGet\Install-Package RsCode.AspNetCore -Version 1.6.1
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="RsCode.AspNetCore" Version="1.6.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RsCode.AspNetCore --version 1.6.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: RsCode.AspNetCore, 1.6.1"
#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 RsCode.AspNetCore as a Cake Addin #addin nuget:?package=RsCode.AspNetCore&version=1.6.1 // Install RsCode.AspNetCore as a Cake Tool #tool nuget:?package=RsCode.AspNetCore&version=1.6.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RsCode
一款开箱即用的.net工具库,助力.net开发。
✨ 特性
- 🌈 基于最新的.net技术。
- 📦 开箱即用的工具库。
- 💕 集成一些流行的开源框架/库。
- 🎨 统一的异常处理
- 🛡 高效的第三方业务库,例:微信开发,微信支付 ,第三方存储等
- ⚙️ 基于 .NET Standard 2.1/.NET 6,可直接引用丰富的 .NET 类库。
- 🎁 可与已有的 ASP.NET Core MVC、Razor Pages 项目无缝集成。
🌈 源码托管
🖥 支持环境
- .NET Core 3.1以上
💿 当前版本
📦 安装
- 先安装 .NET Core SDK 3.1.300 以上版本
在已有项目中引入 RsCode
进入应用的项目文件夹,安装 Nuget 包引用
$ dotnet add package RsCode --version 1.6.1
asp.net core项目引用:
Install-Package RsCode.AspNetCore -Version 1.6.1
推荐使用 Visual Studio 2022 开发。
⚙️使用
使用RsCode时,必要的项目配置 di,mediatR,异常日志
using RsCode;
using RsCode.AspNetCore;
using AspectCore.Configuration;
using AspectCore.Extensions.Hosting;
using AspectCore.Extensions.DataAnnotations;
using MediatR;
var builder = WebApplication.CreateBuilder(args);
//添加di
builder.Host.UseServiceContext(o =>
{
var p = Predicates.ForService("Rswl.*"); //your project namespace
o.AddDataAnnotations(p);
});
//添加日志
builder.Host.ConfigureLogging(logging =>
{
logging.AddLog4Net();
});
//添加mediatR
builder.Services.AddMediatR(typeof(Program).Assembly);
//添加rscode
builder.Services.AddRsCode();
//自动注册接口和实现
builder.Services.AutoRegister("myproject.Core"); //your project name
builder.Services.AutoRegister("myproject.Application");
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseAuthorization();
//异常处理
app.UseErrorHandler();
app.MapControllers();
app.Run();
🔗 文档链接
🤝 如何贡献
如果你希望参与贡献,欢迎 Pull Request,或给我们 报告 Bug 。
❓ 社区互助
如果您在使用的过程中碰到问题,可以通过以下途径寻求帮助,同时我们也鼓励资深用户通过下面的途径给新人提供帮助。
技术人互动群(微信)
<img src="https://www.hnrswl.com/res/static/img/tq.png" width="300" alt="技术赚钱群">
☀️ 授权协议
友情链接
Product | Versions 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.1 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- AspectCore.Extensions.Hosting (>= 2.3.0)
- Caching.CSRedis (>= 3.6.5)
- EnyimMemcachedCore (>= 2.4.3)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.2.0)
- Microsoft.AspNetCore.Diagnostics (>= 2.2.0)
- Microsoft.AspNetCore.HttpOverrides (>= 2.2.0)
- Microsoft.AspNetCore.Mvc (>= 2.2.0)
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
- Microsoft.AspNetCore.Mvc.NewtonsoftJson (>= 3.1.31)
- Microsoft.Extensions.Logging.Log4Net.AspNetCore (>= 6.1.0)
- RsCode (>= 1.6.1)
- System.IdentityModel.Tokens.Jwt (>= 6.6.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on RsCode.AspNetCore:
Package | Downloads |
---|---|
RsCode.Payment
RsCode第三方支付业务API |
|
RsCode.Douyin
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.2.3 | 69 | 10/29/2024 |
2.2.2 | 74 | 10/26/2024 |
2.2.0 | 115 | 9/4/2024 |
2.1.0 | 83 | 8/29/2024 |
2.0.10 | 114 | 6/28/2024 |
2.0.6 | 135 | 2/23/2024 |
2.0.3 | 188 | 10/10/2023 |
2.0.2 | 183 | 8/5/2023 |
2.0.1 | 232 | 7/2/2023 |
1.6.1 | 241 | 4/30/2023 |
1.6.0 | 380 | 11/8/2022 |
1.5.9 | 522 | 9/29/2022 |
1.5.8 | 598 | 5/26/2022 |
1.5.6 | 733 | 3/30/2022 |
1.5.4 | 1,388 | 10/18/2021 |
1.5.3 | 1,194 | 9/20/2021 |
1.5.1 | 1,564 | 2/6/2021 |
1.5.0 | 1,344 | 1/16/2021 |
1.4.7 | 1,241 | 12/25/2020 |
1.1.0 | 1,483 | 2/27/2020 |
1.0.52 | 1,447 | 12/12/2019 |
1.0.51 | 1,394 | 11/18/2019 |
1.0.50 | 1,460 | 11/16/2019 |
1.0.42.1 | 1,417 | 11/10/2019 |
1.0.42 | 1,375 | 11/10/2019 |
1.0.41 | 1,391 | 10/25/2019 |
1.0.11 | 1,428 | 8/25/2019 |
1.0.10 | 1,504 | 5/22/2019 |
1.0.9 | 1,447 | 5/22/2019 |
1.0.0 | 1,750 | 6/20/2018 |
软商网络asp.net core项目开发工具包