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.
<PackageVersion Include="Simple.dotNet.Core" Version="1.0.5" />
                    
Directory.Packages.props
<PackageReference Include="Simple.dotNet.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#:package Simple.dotNet.Core@1.0.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Simple.dotNet.Core&version=1.0.5
                    
Install as a Cake Addin
#tool nuget:?package=Simple.dotNet.Core&version=1.0.5
                    
Install as a Cake Tool

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.Web

Package Description

Simple.dotNet.Sqlite

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 483 11/11/2023
1.0.4 276 9/14/2023
1.0.3 842 6/17/2022
1.0.2 1,346 4/12/2022
1.0.1 2,467 12/28/2021
1.0.0 1,159 12/27/2021