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包)的更多相关文章

  1. ABP框架系列之十一:(AspNet-Core-ASPNET核心)

    Introduction This document describes ASP.NET Core integration for ASP.NET Boilerplate framework. ASP ...

  2. ABP框架系列之四十二:(Object-To-Object-Mapping-对象映射)

    Introduction It's a common to map a similar object to another object. It's also tedious and repeatin ...

  3. ABP框架系列之四十三:(OData-Integration-OData集成)

    Introduction OData is defined as "An open protocol to allow the creation and consumption of que ...

  4. ABP框架系列之三十一:(Localization-本地化)

    Introduction Any application has at least one language for user interface. Many applications have mo ...

  5. ABP框架系列之四十七:(SignalR-Integration-SignalR-集成)

    Introduction Abp.Web.SignalR nuget package makes it easily to use SignalR in ASP.NET Boilerplate bas ...

  6. ABP框架系列之四十九:(Startup-Configuration-启动配置)

    ASP.NET Boilerplate provides an infrastructure and a model to configure it and modules on startup. A ...

  7. ABP框架系列之四:(Repositories-仓库)

    "Mediates between the domain and data mapping layers using a collection-like interface for acce ...

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

  9. ABP框架系列之四十六:(Setting-Management-设置管理)

    Introduction Every application need to store some settings and use these settings in somewhere in th ...

随机推荐

  1. win7 英文版 中文乱码

    win7 为了使用英文的 pcb 软件,把语言包改为英文版后,碰到一部分中文会变成乱码.通过下面方法可以识别: control panel --> region and language --& ...

  2. !学习笔记:前端测试 、前端调试、console 等

    http://www.cnblogs.com/rubekid/p/4851988.html 你真的了解 console 吗 2014 http://www.codeceo.com/article/ja ...

  3. py库:把python打包成exe文件(pyinstaller)

    http://blog.csdn.net/be_quiet_endeavor/article/details/73929077 用Pyinstaller把Python3.4程序打包成可执行文件exe ...

  4. jmeter压测之添加负载机

    jmeter压测基本介绍一般基准测试(基准测试时间一般为5分钟)后压测的时间是10-15分钟: 实施测试之前要拿到测试指标 例如:tps要达到多少响应时间要达到多少并发数要达到多少TPS :服务端每秒 ...

  5. leetcode221

    int maximalSquare(vector<vector<char>>& matrix) { int height=matrix.size(); ) ; ].si ...

  6. EasyARM-iMX283A的make menuconfig出现错误:Install ncurses(ncurses-devel) and try again。

    lin@lin-machine:~/linux-2.6.35.3$ make menuconfig *** Unable to find the ncurses libraries or the ** ...

  7. week07 13.2 NewsPipeline之 二 News Fetcher - Xpath

    我们使用Xpath来专门做一个scrapter 我们专门弄个文件夹 里面全部是 各个新闻源(CNN BBC等)的scraper来抓取网站的text内容 主要函数(就是传入text内容的那个url)然后 ...

  8. Ubuntu16下用virtualbox 安装Windows虚拟机

    平时要用Windows系统,但是现在工作都是在Linux下面开发,所以都没装Windows,之前用vm虚拟机比较麻烦, 所以就用virtualbox搞搞: 1.sed -i '$adeb http:/ ...

  9. Session & Cookie 简介

    (一)简介 会话(Session)跟踪是Web程序中常用的技术,用来跟踪用户的整个会话.常用的会话跟踪技术是Cookie与Session.Cookie通过在客户端记录信息确定用户身份,Session通 ...

  10. python 网络编程 tcp和udp 协议

    1. 网络通信协议 osi七层,tcp\ip五层 tcp\ip五层 arp协议:通过IP地址找到mac地址 2.tcp和udp的区别 tcp协议:面向连接,消息可靠,相对udp来讲,传输速度慢,消息是 ...