ABP框架系列之四十一:(Nuget-Packages-Nuget包)
Packages
ASP.NET Boilerplate is distributed on nuget. Here, a list of all official packages.
Abp
Core package. All other packages depends on it.
Abp.AspNetCore
ASP.NET Core integration package.
Abp.Web.Common
Common web related classes (Used both by ASP.NET MVC and ASP.NET Core).
Abp.Web
Web package both of MVC and Web API use.
Abp.Web.Mvc
ASP.NET MVC integration package.
Abp.Web.Api
ASP.NET Web API integration package.
Abp.Web.Api.OData
OData integration package.
Abp.Web.Resources
Client side scripts package.
Abp.Web.SignalR
SignalR integration package.
Abp.Owin
OWIN integration package.
Abp.EntityFramework.Common
Common code shared between Abp.EntityFramework and Abp.EntityFrameworkCore packages.
Abp.EntityFramework
EntityFramework integration package.
Abp.EntityFramework.GraphDiff
EntityFramework GraphDiff integration package.
Abp.EntityFrameworkCore
EntityFrameworkCore integration package.
Abp.NHibernate
NHibernate integration package.
Abp.Dapper
Dapper integration package.
Abp.FluentMigrator
Some simple extension methods to use ABP with FluentMigrator.
Abp.AutoMapper
AutoMapper integration package for object mapper.
Abp.HangFire
Hanfire integration for background job management.
Abp.HangFire.AspNetCore
Hangfire.AspNetCore integration for background job management.
Abp.Castle.Log4Net
Log4Net adapter to support latest log4net for Abp and Castle.
Abp.RedisCache
Redis replacement for ABP's default cache manager.
Abp.MailKit
MailKit implementation for ABP's IEmailSender.
Abp.Quartz
Quartz integration package.
Abp.TestBase
Base classes to create integration tests for ABP based projects.
Abp.AspNetCore.TestBase
Base classes to create integration tests for AspNet Core and ABP based projects.
ABP框架系列之四十一:(Nuget-Packages-Nuget包)的更多相关文章
- ABP框架系列之十一:(AspNet-Core-ASPNET核心)
Introduction This document describes ASP.NET Core integration for ASP.NET Boilerplate framework. ASP ...
- ABP框架系列之四十二:(Object-To-Object-Mapping-对象映射)
Introduction It's a common to map a similar object to another object. It's also tedious and repeatin ...
- ABP框架系列之四十三:(OData-Integration-OData集成)
Introduction OData is defined as "An open protocol to allow the creation and consumption of que ...
- ABP框架系列之三十一:(Localization-本地化)
Introduction Any application has at least one language for user interface. Many applications have mo ...
- ABP框架系列之四十七:(SignalR-Integration-SignalR-集成)
Introduction Abp.Web.SignalR nuget package makes it easily to use SignalR in ASP.NET Boilerplate bas ...
- ABP框架系列之四十九:(Startup-Configuration-启动配置)
ASP.NET Boilerplate provides an infrastructure and a model to configure it and modules on startup. A ...
- ABP框架系列之四:(Repositories-仓库)
"Mediates between the domain and data mapping layers using a collection-like interface for acce ...
- ABP框架系列之四十四:(OWIN)
If you are using both of ASP.NET MVC and ASP.NET Web API in your application, you need to add Abp.Ow ...
- ABP框架系列之四十六:(Setting-Management-设置管理)
Introduction Every application need to store some settings and use these settings in somewhere in th ...
随机推荐
- 分布式CAP定理,为什么不能同时满足三个特性?
在弄清楚这个问题之前,我们先了解一下什么是分布式的CAP定理. 根据百度百科的定义,CAP定理又称CAP原则,指的是在一个分布式系统中,Consistency(一致性). Availability(可 ...
- Container 、Injection
Container: Linux容器作为一类操作系统层面的虚拟化技术成果,旨在立足于单一Linux主机交付多套隔离性Linux环境.与虚拟机不同,容器系统并不需要运行特定的访客操作系统.相反,容器共享 ...
- shell :将标准输出及标准错误输出写到指定文件
shell 脚本如下: logFile=/usr/local/log/$today.txt exec >> $logFile 2>&1 1为标准输出stdout.2为标准错误 ...
- jsonp原理及同源策略
[个人学习笔记,如有问题还请前辈纠正] jsonp 是用来跨域读取数据的,为什么从不同的域访问数据要用jsop呢?这源于一个著名的安全策略--同源策略,即: 协议.端口号.域名相同 举例说明:http ...
- 转: spring静态注入
与其说是静态注入(IOC),不如讲是对JavaBean 的静态成员变量进行赋值. 一般我们在使用依赖注入的时候,如果当前对象(javaBean )创建(实例化)一次,那么非静态的成员变量也会实例化一次 ...
- web socket client
<!DOCTYPE HTML> <html> <head> <title>My WebSocket</title> </head> ...
- C#使用GET、POST请求获取结果,这里以一个简单的用户登陆为例。
1. 使用GET请求获取结果 1.1 创建LoginHandler.aspx处理页面 protected void Page_Load(object sender, EventArgs e) { st ...
- C# 方法参数 out、ref、param 详解
ref和out都对函数参数采用引用传递形式——不管是值类型参数还是引用类型参数,并且定义函数和调用函数时都必须显示生命该参数为 ref/out形式.两者都可以使函数传回多个结果. ref 类似于 PH ...
- lambda group by 的用法
foreach (DynamicObject lstKSItem in lstKSItems) { var entity = lstKSItem["FEntity"] as Dyn ...
- 转:解决AndroidStudio连不上Android设备真机的问题
Android手机开发Android应用的时候,需要连接真机,进行应用软件的真机调试,但是由于诸多原因,可能导致无法与实现连接: 在我们连接了Android设备出现上面这种情况的时候,可以打开设备管理 ...