Simple.dotNet.Core 1.0.5

dotnet add package Simple.dotNet.Core --version 1.0.5
NuGet\Install-Package Simple.dotNet.Core -Version 1.0.5
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.5" />
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.5
#r "nuget: Simple.dotNet.Core, 1.0.5"
#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.5

// Install Simple.dotNet.Core as a Cake Tool
#tool nuget:?package=Simple.dotNet.Core&version=1.0.5

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 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.

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.

Version Downloads Last updated
1.0.5 253 11/11/2023
1.0.4 142 9/14/2023
1.0.3 596 6/17/2022
1.0.2 1,057 4/12/2022
1.0.1 1,986 12/28/2021
1.0.0 859 12/27/2021