Simple.dotNet.Core
1.0.4
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 Simple.dotNet.Core --version 1.0.4
NuGet\Install-Package Simple.dotNet.Core -Version 1.0.4
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="Simple.dotNet.Core" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Simple.dotNet.Core --version 1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Simple.dotNet.Core, 1.0.4"
#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 Simple.dotNet.Core as a Cake Addin #addin nuget:?package=Simple.dotNet.Core&version=1.0.4 // Install Simple.dotNet.Core as a Cake Tool #tool nuget:?package=Simple.dotNet.Core&version=1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Simple.dotNet.Core
Install Package
Install-Package Simple.dotNet.Core
包介绍
- Authorization
- Dapper
- Data
- Dependency
- Domain
- Drawing
- Encryption
- Expressions
- Extensions
- Http
- Hub
- Jobs
- Languages
- Localization
- Logger
- Mapper
Authorization 权限相关,用于配置后台菜单及功能权限,使用案例如下:
internal class PermissionProvider : AuthorizationProvider
{
public override void SetPermissions(IPermissionDefinitionContext context)
{
var auth = context.CreatePermission(PermissionNames.Authorization, "权限管理", PermissionType.Memu, new PermissionMeta() { { "icon", "" } });
var admin = auth.CreateChildPermission(PermissionNames.Authorization_Admin, "管理员列表", PermissionType.Memu, new PermissionMeta() { { "href", "/auth/admin" }, { "icon", "" } });
admin.CreateChildPermission(PermissionNames.Authorization_Admin_Create, "创建");
admin.CreateChildPermission(PermissionNames.Authorization_Admin_Edit, "编辑");
admin.CreateChildPermission(PermissionNames.Authorization_Admin_Delete, "删除");
var role = auth.CreateChildPermission(PermissionNames.Authorization_Role, "角色列表", PermissionType.Memu, new PermissionMeta() { { "href", "/auth/role" }, { "icon", "" } });
role.CreateChildPermission(PermissionNames.Authorization_Role_Create, "创建");
role.CreateChildPermission(PermissionNames.Authorization_Role_Edit, "编辑");
role.CreateChildPermission(PermissionNames.Authorization_Role_Delete, "删除");
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Dapper (>= 2.0.90)
- Microsoft.AspNetCore.Http (>= 2.2.2)
- Microsoft.EntityFrameworkCore.SqlServer (>= 6.0.0)
- Microsoft.Extensions.Configuration.Json (>= 6.0.0)
- Microsoft.Extensions.DependencyModel (>= 6.0.0)
- Newtonsoft.Json (>= 13.0.1)
- System.Collections.Immutable (>= 6.0.0)
- System.Drawing.Common (>= 6.0.0)
- System.Reflection.DispatchProxy (>= 4.7.0)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on Simple.dotNet.Core:
Package | Downloads |
---|---|
Simple.dotNet.Sqlite
Package Description |
|
Simple.dotNet.Web
Package Description |
|
Simple.dotNet.Redis
Package Description |
|
Simple.dotNet.Elasticsearch
Package Description |
|
Simple.dotNet.RabbitMQ
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.