.net开源项目整理

整理一些平时收藏和应用的开源代码,方便自己学习和查阅

1.应用

nopcommerce,开源电商网站,开发环境asp.net mvc(未支持.net core),使用技术(autofac,ef,页面插件等)

https://github.com/nopSolutions/nopCommerce

OrchardCMS,内容管理网站

https://github.com/OrchardCMS/Orchard(.net版本)

https://github.com/OrchardCMS/Orchard2(.net core版本)

ABP(aspnetboilerplate),提供一系列工具用于web应用创建,支持 ASP.NET Core, ASP.NET MVC & Web API,也提供了web应用的模板

https://github.com/aspnetboilerplate/aspnetboilerplate(.net core 版本,tag分支有支持.net版本的)

IdentityServer,用户授权网站(支持openid和OAuth 2.0),可用于单点登录和第三方授权等

https://github.com/IdentityServer/IdentityServer3(.net版本)

https://github.com/IdentityServer/IdentityServer4(.net core版本)

eShopOnContainers  微软提供的微服务示例

https://github.com/dotnet-architecture/eShopOnContainers

PetShop  三层架构经典例子,用于新手学习,不过aspx有点过时了

https://github.com/songhhwd01/PetShop

BlogEngine.NET   博客网站,也是aspx

https://github.com/rxtur/BlogEngine.NET

2.组件

Lucene.Net  全文检索开发组件

https://github.com/apache/lucenenet

ServiceStack  半开源,用于创建web服务

https://github.com/ServiceStack/ServiceStack

MassTransit  可用于创建基于消息的服务和应用,依赖于RabbitMQ

https://github.com/MassTransit/MassTransit

stateless  简单的工作流开发组件,不支持在线定制工作流

https://github.com/dotnet-state-machine/stateless

Hangfire  任务调度开发利器

https://github.com/HangfireIO/Hangfire

Jwt.Net   用于生成JWT (JSON Web Token) 和JWT校验

https://github.com/jwt-dotnet/jwt

npoi  支持office文件的读写

https://github.com/tonyqus/npoi

StackExchange.Redis  Redis的.net客户端

https://github.com/StackExchange/StackExchange.Redis

CacheManager  用于缓存的管理,支持Redis.Memcached,couchbase等

https://github.com/MichaCo/CacheManager

Autofac  Ioc组件,用于依赖注入

https://github.com/autofac/Autofac

LightGBM  用于机器学习

https://github.com/Microsoft/LightGBM

3.框架

asp.net mvc 

https://github.com/aspnet/Mvc

Nancy  类似asp.net mvc,web开发框架

https://github.com/NancyFx/Nancy

4.其他

dotnet core 主页,提供dotnet core相关知识的索引和例子,方便快速入门

https://github.com/dotnet/core

.net源码

https://github.com/Microsoft/referencesource

原文地址:https://www.cnblogs.com/ldybyz/p/6961669.html