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 ...
随机推荐
- percona-toolki安装冲突(my.cnf Percona-Server-shared与mysql-community-server)
最近在安装percona-toolkit工具包时,提示在my.cnf文件中, Percona-Server-shared与mysql-community-server冲突.起初还以为是一定需安装Per ...
- go.cd 自动化构建
go.cd 自动化构建 go.cd 官网 go.cd 文档 go.cd安装 go.cd server go.cd agent go.cd 依赖jdk1.8.可以使用openjdk1.8,也可以使用or ...
- Android控件使用FragmentTabHost,切换Fragment;
大部分APP的主界面都很类似,要么底部导航的,要么就是侧滑菜单,还有底部导航+侧滑菜单的:底部导航实现大概有几种方式: TabHost+Fragment RadioGroup+Fragment Fra ...
- Vue 封装的noData组件
<template> <div :style="{color: fontColor}" :class="['noDataView', iconType] ...
- Flask与WSGI
刚开始接触到python及Flask框架时,总是会听到 wsgi等等相关的名词,以及 项目部署时会用到nginx+gunicorn等等,但是对于一个请求从 nignx到gunicorn再到falsk框 ...
- sqlite--一秒20万数据
参考博文:https://blog.csdn.net/weixin_35261786/article/details/78222602 #include <iostream> #inclu ...
- windows注册表解析说明
https://www.cnblogs.com/wfq9330/p/9176654.html
- charles 注册码
感谢@那时纯真 提供的注册码.Windows和Mac通用. 软件去官网下载安装即可. Registered Name:https://zhile.io License Key: 48891cf209c ...
- MySQL中的重做日志(redo log),回滚日志(undo log),以及二进制日志(binlog)的简单总结
MySQL中有六种日志文件,分别是:重做日志(redo log).回滚日志(undo log).二进制日志(binlog).错误日志(errorlog).慢查询日志(slow query log).一 ...
- window、location、location.href、self、top简单介绍
1.self:当前窗口对象(如果是在iframe里,则为该框架的窗口对象) 2.top:父窗口对象 3.window:典型情况下,浏览器会为每一个打开的html创建对应的window对象,如果这个文档 ...