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. oracle体系结构理解

    体系结构相关内容每次看遍书,过段时间就忘了..无奈用自己理解的方式记录之. 1.commit与写盘与否没有关系,也就是说修改数据(insert update delete)后并提交数据,这条被修改的数 ...

  2. 02-Introspector内省设置单个属性

    package com.oa.test; import java.beans.IntrospectionException; import java.beans.PropertyDescriptor; ...

  3. React开发笔记

    项目环境搭建 使用create-react-app CSS使用styled-components yarn add styled-components 引入reset.css样式 import { c ...

  4. 基于form表单 写登陆注册

    urls urlpatterns = [ url(r'^admin/', admin.site.urls), # 登录界面url(r'^login/$', views.login,name='logi ...

  5. 网页编程工具:EditPlus

    字体:Consolas EditPlus,很土很简单很强大的网页编程工具 http://www.editplus.com/download.html  下载 http://www.cnblogs.co ...

  6. luigi 学习

    1.mac 上安装luigi pip install luigi pip install boto3 (luigi依赖 boto3) 2.基本概念 class Streams(luigi.Task): ...

  7. linux文件属性的10个字符各代表什么意思

    10个字符表示文件类别和权限,具体如下: 例: 第一个字符表示文件类别,代表的含义如下:-:普通文件d:目录文件b:块设备文件c:字符设备文件l:符号链接文件 后面9个字符代表3组访问权限:第1组的3 ...

  8. java学习--equals

    Object类是所有类的基类. Object类有equals方法.而继承Object中的equals方法判断的是两个对象的引用是否相等,相当于"==",也就是说只有比较的两个对象为 ...

  9. 我尼玛,二半夜的说中photo.src病毒了。

    大半夜手机预警,中病毒了,我感觉也没啥东西呀.一个破小网站,别人黑我干啥. 登上服务器去一看,我滴个乖乖,photo.src病毒.服务器里面显示是一个背景桌面应用程序, 打算直接从文件夹删除,但是正在 ...

  10. vue浏览器滚动加载更多

    created () { var that = this; window.addEventListener('scroll',this.scroll,true) console.log(this.$r ...