ASP.NET 5 Beta8 已经发布

Microsoft ASP.NET and Web Tools 2015 (Beta8)

http://www.microsoft.com/en-us/download/details.aspx?id=49442

 

.net core 完成了98%,绝大部分类库完成了跨平台开发,已经基本可用,下一版本为RC,发布时间为12月,将可用生产环境

Feature

  • [HttpPlatformHandler] Support waiting for debugger to attach based on environment variable (#2810)
  • Add support for producing ecma compliant "exe" (#2754)
  • Add support for .NET Generations (#2724)
  • [HttpPlatformHandler]: Publish changes to web.config for IIS based hosting (#2682)
  • Updating search path in global.json won't invalidate lock in case where a package reference can change to a project reference. (#2671)
  • Add target framework to project.lock.json for P2P references (#2622)
  • Set the appdomain variable APP_CONTEXT_BASE_DIRECTORY to make System.AppContext work on dnx46x and up (#2603)
  • Add portable PDB support to dnu pack/publish (and runtime) (#2542)
  • When csproj project reference can not be resolved, it still should be sent as project reference (#2405)
  • Add a dnu command to clear the HTTP cache (#2401)
  • Implicit DNX min version check (#2197)
  • Split NuGetDependencyResolver into LockFileDependencyResolver and NuGetDependencyResolver (#2196)
  • project.json targeting net20 and net35 (#1894)
  • Localization: Loading of loc resources (#1263)
  • Expose project build configuration in scripts section of project.json (#887)
  • Allow additional files in the nupkg (#848)
  • Clean up rules around what is a valid dependency version in the project.json file (#438)

Bugs Fixed

  • Incorrect runtime.json processing (#2891)
  • Kestrel never works if project published with dnu publish (#2858)
  • DNX RID synthesis is broken (#2811)
  • Loading multiple satellite assemblies of same project fails in coreclr (#2802)
  • [Regression]: DTH loses references when lock file invalid (#2776)
  • need an explicit “link” between dependency diagnostic warning/error and a dependency (#2743)
  • Unresolved project path from lock file cause NullRef in ApplicationHostContext (#2729)
  • Not picking up linux binary for System.Net.Http.dll (#2703)
  • OOM when using MVC solution in VS (#2681)
  • ILibraryExport.GetAllExports returns null if the library is a package (#2670)
  • Azure / Kudu - Git deploy of beta7 and dnx451 (#2656)
  • Suggest suppressing the *** READING ... messages (#2649)
  • [osx] missing native libraries in latest build (#2607)
  • The packInclude source paths aren't relative to project root (#2604)
  • Invalid path when DNX and project dependencies are on a different partition (#2596)
  • DNX on OSX/Linux loads the wrong System.Runtime.InteropServices.RuntimeInformation package (#2594)
  • System.ArgumentNullException with published application (#2552)
  • project.json net40 client (#2546)
  • DTH spent about 300M memory on Microsoft.Dnx.Runtime.Servicing.Breadcrumbs when open MVC solution (#2513)
  • Publishing with --no-source doesn't find the nupkg (#2471)
  • Setting the version to 1.0.0.0 makes dnu throw a FileNotFoundException (#2390)
  • "dnu publish" should restore for wrapper projects before building them (#2352)
  • Upgrading / Downgrading package versions on ASP.NET 5 Class libraries doesn't cause package restore. (#2339)
  • Put the 'feeds' command help text in sorted order (#2201)
  • Add servicing attribute to a few Microsoft.Framework.* assemblies (#2046)
  • Don't use environment variables to pass data from native to managed code (#1970)

转载于:https://www.cnblogs.com/loqi/p/4884690.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544064.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

面试突击65:HTTPS有什么优点?说一下它的执行流程?

作者 | 磊哥来源 | Java面试真题解析(ID:aimianshi666)转载请联系授权(微信ID:GG_Stone)说到 HTTPS 相信大部分人都是不陌生,因为目前我们使用的绝大数网站都是基于 HTTPS 的,比如以…

nanf flash校验_C ++中带有示例的nanf()函数

nanf flash校验C Nanf()函数 (C nanf() function) nanf() function is a library function of cmath header, it is used to get the NaN value of type float. It accepts an argument (which is an implementation-specific C String – to get NaN value we have to pass a…

Cell.reuseIdentifier 指什么

Cell.reuseIdentifier 指的是 默认为空,如果不定义,在执行 [_tableView registerNib:templateCellNib forCellReuseIdentifier:_templateCell.reuseIdentifier]; 时,提示 must pass a valid reuse identifier to -[UITableView registerNib:f…

缓存穿透、缓存雪崩、缓存击穿?

背景 在现代软件架构中,缓存的应用已经非常普及。缓存的使用在面试和实践中都是避不开的硬技能、硬知识,如果你说还不太熟悉缓存的使用,可能都不好意思说自己是程序员。这篇文章,带大家进一步学习在缓存使用中不得不考虑三个特殊场…

c语言 div ldiv_C ++中带有示例的ldiv()函数

c语言 div ldivC ldiv()函数 (C ldiv() function) ldiv() function is a library function of cstdlib header. It is used for integral division, it accepts two parameters (numerator and denominator) and returns a structure that contains the quot (quotient) and r…

网盘搜索

http://pan.java1234.com1、在http://baidu.com的搜索框中输入:site:http://pan.baidu.com 搜索词(回复中林涛同学建议第一条如果用谷歌搜site:百度网盘的话效果会好一点)2、壹搜 网盘搜索引擎3、盘易搜 盘易搜-百度网盘搜索4、BD盘搜索 百度…

如何防止订单重复支付?

大家好,我是磊哥,想必大家对在线支付都不陌生,今天和大家聊聊如何防止订单重复支付。看看订单支付流程我们来看看,电商订单支付的简要流程:订单钱包支付流程从下单/计算开始:下单/结算:这一步虽…

c ++atoi函数_atoi()函数以及C ++中的示例

c atoi函数C atoi()函数 (C atoi() function) atoi() function is a library function of cstdlib header. It is used to convert the given string value to the integer value. It accepts a string containing an integer (integral) number and returns its integer valu…

IOS沙盒中的Documents、Library、tmp区别

1.Documents: 用户生成的文件、其他数据及其他程序不能重新创建的文件,iTunes备份和恢复的时候会包括此目录。 2.Library/Caches: 可以重新下载或者重新生成的数据,数据库缓存文件和可下载内容应该保存到这个文件夹,iTunes不会备份此目录&…

3 分钟快速上手 Spring 事件机制

小伙伴们好呀~ 今天来和大家分享下这个 Spring事件机制内容概览image-20210829132019387原理image-20210828184103069这个熟悉 观察者模式 的小伙伴应该一眼就看出来啦~其实就是个简单版的 发布-订阅模式有三个核心类👇事件 ApplicationEvent事件发布器 Application…

mis dss gis_MIS中的决策支持系统(DSS)

mis dss gisThe Decision Support System is always helpful to management people to take decisions/decisions and finds the key business insights from available information systems. 决策支持系统始终有助于管理人员做出决策/决策,并从可用的信息系统中找到…

使用Grunt构建自动化开发环境

1、准备工作 1)首页确保电脑上网,以及能够访问https://registry.npmjs.org/,因需从此网站中下载安装相应的插件; 2)电脑安装Node.js,Grunt及Grunt插件都是基于node.js运行的;如果你电脑上未装node.js&#…

面试突击66:请求转发和请求重定向有什么区别?

作者 | 磊哥来源 | Java面试真题解析(ID:aimianshi666)转载请联系授权(微信ID:GG_Stone)在 Java 中,跳转的实现方式有两种:请求转发和请求重定向,但二者是完全不同的&…

python 示例_带有示例的Python列表copy()方法

python 示例列出copy()方法 (List copy() Method) copy() method is used to copy a list, the method is called with this list (current/original list) and returns a list of the same elements. copy()方法用于复制列表,该方法与此列表一起调用(当前/原始列表…

99%的Java程序员会踩的6个坑

前言作为Java程序员的你,不知道有没有踩过一些基础知识的坑。有时候,某个bug,你查了半天,最后发现竟然是一个非常低级的错误。有时候,某些代码,这一批数据功能正常,但换了一批数据就出现异常了。…

输出一个数的二进制序列中1的个数(三种方法)

由于这个数有可能是负数&#xff0c;负数在计算机中以补码的方式存储&#xff0c;要求负数的补码中1的个数依然可以正确输出&#xff0c;方法如下&#xff1a;1、定义这个数的变量类型为无符号整型&#xff08;unsigned int&#xff09;代码为include<stdio.h>int count_…

BigDecimal 的 4 个坑,你踩过几个?

背景 一直从事金融相关项目&#xff0c;所以对BigDecimal再熟悉不过了&#xff0c;也曾看到很多同学因为不知道、不了解或使用不当导致资损事件发生。所以&#xff0c;如果你从事金融相关项目&#xff0c;或者你的项目中涉及到金额的计算&#xff0c;那么你一定要花时间看看这篇…

Windows Server 2012 R2 里面如何安装Net Framework 3.5

图示 不要慌&#xff0c;和windows是不一样的&#xff0c;没有问题 下一步 默认即可&#xff0c;下一步 这里面的东西以后会装&#xff0c;先不管&#xff0c;我们今天目的是装 net framework 3.5 选一下 正在安装 如果出错了请参考&#xff1a; http://www.2cto.com/os/201410…

python计算连续复利_复利的Python程序

python计算连续复利Given principle amount, rate and time and we have to find the compound interest in Python. 给定原理量&#xff0c;速率和时间&#xff0c;我们必须找到Python的复利 。 计算复利 (Calculate compound interest) To calculate compound interest, we …

聊聊Java中代码优化的30个小技巧

今天我们一起聊聊Java中代码优化的30个小技巧&#xff0c;希望会对你有所帮助。1.用String.format拼接字符串不知道你有没有拼接过字符串&#xff0c;特别是那种有多个参数&#xff0c;字符串比较长的情况。比如现在有个需求&#xff1a;要用get请求调用第三方接口&#xff0c;…