作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 VS 2015 中创建了一个新的 ASP.NET 5 MVC 6 (vNext) 项目。
我从另一个项目导入了一些类,但看起来 DNX 缺少一些对我来说非常重要的类。
我可以选择使用完整的 .NET 堆栈而不是 DNX 吗?
我需要改变什么?我比旧方法更喜欢新的 config.json 文件,但是我必须将引用更改为什么。
"frameworks": {
"dnx451": { },
"dnxcore50": { }
},
最佳答案
您只需要删除核心线,如下所示:
"frameworks": {
"dnx451": { }
},
来自
asp 5 docs (突出显示相关部分):
dnx451 represents the .NET Framework, while dnxcore50 represents .NETCore 5 (5.0).
...
The recommendation from the ASP.NET team is totarget both frameworks with new applications. If you want to onlytarget .NET Core, remove dnx451, or only target .NET Framework, removednxcore50, from the frameworks listed in project.json. Note thatASP.NET 4.6 and earlier target and require the .NET Framework, as theyalways have.
关于visual-studio-2015 - 如何在 ASP.NET 5 MVC 6 项目中切换到完整的 .NET 堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31529654/
我是一名优秀的程序员,十分优秀!