【分享】Asp.net Core相关教程及开源项目
入门
- 全新的ASP.NET: https://www.cnblogs.com/Leo_wl/p/5654828.html
- 在IIS上部署你的ASP.NET Core项目: https://www.cnblogs.com/wangjieguang/p/core-iis.html
- 举个例子来聊聊它的依赖注入: http://www.bkjia.com/Asp_Netjc/1309630.html,
- http://www.cnblogs.com/jesse2013/p/di-in-aspnetcore.html
- 细说ASP.NET Core静态文件的缓存方式: https://www.cnblogs.com/maxzhang1985/p/6053738.html
- ASP.NET Core Web 资源打包与压缩: https://www.cnblogs.com/tdfblog/p/bundling-and-minification-in-asp-net-core.html
- .net core依赖注入的封装: https://www.cnblogs.com/BenDan2002/p/6087893.html
- async-await 异常处理: http://blog.zhaojie.me/2012/04/exception-handling-in-csharp-async-await-2.html
- http://www.cnblogs.com/sunjie9606/p/8519216.html
进阶
- Asp.netCore+Redis: http://www.cnblogs.com/xishuai/p/asp-net-core-use-redis.html
- asp.net core学习项目: https://github.com/axzxs2001/Asp.NetCoreExperiment
- 搭建本地nuget: http://www.cnblogs.com/shanyou/p/5910250.html
系列教程
- 官方中文教程:https://docs.microsoft.com/zh-cn/aspnet/core/
- 英文教程:https://docs.microsoft.com/zh-cn/aspnet/core/?view=aspnetcore-2.1
- 任务调度框架:https://github.com/fluentscheduler/FluentScheduler(简化版)
- .Net core开源项目收集:https://github.com/dncNew/dncNew/blob/master/dnc.md
项目相关的开源项目:
- asp.net core 绑定多个二级域名: https://github.com/mariuszkerl/AspNetCoreSubdomain
- asp.net core自适应web,平板,手机: https://github.com/wangkanai/Responsive
- StackExchange.Redis.Extensions.Protobuf+protobuf-net
- 网页代码压缩精简工具:WebMarkupMinhttp://github.com/Taritsyn/WebMarkupMin/wiki
微服务
- Ocelot:https://github.com/ThreeMammals/Ocelot
- ConsulSharp:https://github.com/axzxs2001/ConsulSharp
【分享】Asp.net Core相关教程及开源项目的更多相关文章
- Asp.net Core相关教程及开源项目推荐
入门 全新的ASP.NET: https://www.cnblogs.com/Leo_wl/p/5654828.html 在IIS上部署你的ASP.NET Core项目: https://www.c ...
- ASP.NET Core Identity 迁移数据 - ASP.NET Core 基础教程 - 简单教程,简单编程
原文:ASP.NET Core Identity 迁移数据 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core Identity 迁移数据 上一章节中我们配置了 ...
- ASP.NET Core Identity 配置 - ASP.NET Core 基础教程 - 简单教程,简单编程
原文:ASP.NET Core Identity 配置 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core Identity 配置 上一章节我们简单介绍了下 Id ...
- ASP.NET Core 设置和初始化数据库 - ASP.NET Core 基础教程 - 简单教程,简单编程
原文:ASP.NET Core 设置和初始化数据库 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core 设置和初始化数据库 上一章节中我们已经设置和配置好了 EF ...
- ASP.NET Core 配置 EF 框架服务 - ASP.NET Core 基础教程 - 简单教程,简单编程
原文:ASP.NET Core 配置 EF 框架服务 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core 配置 EF 框架服务 上一章节中我们了解了 Entity ...
- ASP.NET Core MVC 设计模式 - ASP.NET Core 基础教程 - 简单教程,简单编程
原文:ASP.NET Core MVC 设计模式 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core MVC 设计模式 上一章节中,我们提到 ASP.NET Co ...
- ASP.NET Core 静态文件 - ASP.NET Core 基础教程 - 简单教程,简单编程
原文:ASP.NET Core 静态文件 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core 静态文件 前几章节中,我们学习了 ASP.NET Core 的中间件 ...
- ASP.NET Core 异常和错误处理 - ASP.NET Core 基础教程 - 简单教程,简单编程
原文:ASP.NET Core 异常和错误处理 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core 异常和错误处理 上一章节中,我们学习了 ASP.NET Cor ...
- CentOS开发ASP.NET Core入门教程
作者:依乐祝 原文地址:https://www.cnblogs.com/yilezhu/p/9891346.html 因为之前一直没怎么玩过CentOS,大多数时间都是使用Win10进行开发,然后程序 ...
随机推荐
- JDK 1.8 新特性
default 函数式接口 待总结
- [模板][P4782]2-SAT
Description: 有n个布尔变量\(x_1\)~\(x_n\),另有m个需要满足的条件,每个条件的形式都是"\(x_i\)为true/false或\(x_j\)为true/false ...
- 如何绘制UML图?
首先推荐在线绘制UML的网址:https://www.processon.com/,很好用. 在软件开发过程中,开发人员往往需要通过绘制类图来理清业务的实现思路,从而方便代码实现,也便于后期的代码维护 ...
- C++学习笔记51:排序
//直接插入排序函数模板 template <class T> void insertionSort(T a[], int n) { int i, ; T temp; ; i < n ...
- ggplot2 作图
ggplot2 作图 ggplot2是著名的R语言作图工具包,gg为Grammar of Graphics的缩写,体现了结构化作图的思想.ggplot2根据图层来作图是非常优秀的思想,官方文档在这里 ...
- Python下载及Python最强大IDEPyCharm下载链接
Python下载: https://www.python.org/downloads/ PyCharm下载: https://www.jetbrains.com/pycharm/download/#s ...
- Vue相关开源项目库汇总(史上最全)
偶尔在网上看到的,先保存着,以备不时之需 https://www.jianshu.com/p/e37f4dde49a2 better-scroll:是一款重点解决移动端(未来可能会考虑 PC 端)各种 ...
- Linux curl命令使用代理、以及代理种类介绍(转)
Linux curl命令使用代理.以及代理种类介绍 本文转自http://aiezu.com/article/linux_curl_proxy_http_socks.html,感谢作者 有时出于个 ...
- 在python里调用java的py4j的使用方法
py4j可以使python和java互调 py4j并不会开启jvm,需要先启动jvm server,然后再使用python的client去连接jvm GatewayServer实例:允许python程 ...
- EditPlus 自用正则替换
分享下自己用EditPlus 的一些些正则技巧,editplus版本v3.5.1 1.替换a标签链接地址为空 例如: 把所有的 1 <a href="..囧.."> 替 ...