简体   繁体   English

VS 2015 Update 3随附的最新ASP.NET版本是什么?

[英]What is latest ASP.NET version that comes with VS 2015 update 3?

I have a web application using what I think it is the latest version of ASP.NET. 我有一个Web应用程序,使用的是我认为是ASP.NET的最新版本。 I updated my VS 2015 to VS 2015 Update 3 and I am not sure whether I have latest version of ASP.NET and other dependencies or not... 我将VS 2015更新为VS 2015 Update 3,但不确定是否具有最新版本的ASP.NET和其他依赖项...

This is my project.json 这是我的project.json

{
  "version": "1.0.0-*",
  "compilationOptions": {
    "emitEntryPoint": true
  },

  "dependencies": {
    "EntityFramework.Commands": "7.0.0-rc1-final",
    "EntityFramework.Core": "7.0.0-rc1-final",
    "EntityFramework.MicrosoftSqlServer": "7.0.0-rc1-final",
    "Microsoft.AspNet.Authentication.MicrosoftAccount": "1.0.0-rc1-final",
    "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final",
    "Microsoft.AspNet.Diagnostics.Entity": "7.0.0-rc1-final",
    "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1-final",
    "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
    "Microsoft.AspNet.Mvc": "6.0.0-rc1-final",
    "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1-final",
    "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
    "Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
    "Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1-final",
    "Microsoft.Dnx.Watcher": "1.0.0-rc1-final",
    "Microsoft.Extensions.CodeGenerators.Mvc": "1.0.0-rc1-final",
    "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final",
    "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc1-final",
    "Microsoft.Extensions.CodeGeneration": "1.0.0-rc1-final"
  },

  "commands": {
    "web": "Microsoft.AspNet.Server.Kestrel",
    "ef": "EntityFramework.Commands",
    "gen": "Microsoft.Extensions.CodeGeneration",
    "watch": "Microsoft.Dnx.Watcher"
  },

  "frameworks": {
    "dnx451": { },
    "dnxcore50": { }
  },

  "exclude": [
    "wwwroot",
    "node_modules"
  ],
  "publishExclude": [
    "**.user",
    "**.vspscc"
  ]
}

And the DNX SDK Version I am using is 1.0.0-rc1-update1. 我使用的DNX SDK版本是1.0.0-rc1-update1。

Is all correct or am I missing an update in my project? 一切正确还是我的项目中缺少更新?

If I am missing a newer version could you please tell me how to upgrade? 如果我缺少较新的版本,可以告诉我如何升级吗?

Thanks! 谢谢!

DNX was discontinued. DNX已停产。
On RC2 already it was moved to the .NET CLI: dot.net 在RC2上,它已移至.NET CLI: dot.net

The final release was out a couple months ago: ASP.NET Core 1.0 . 最终版本是几个月前发布的: ASP.NET Core 1.0

Here you can find the docs.asp.net instructions on how to migrate from RC1 (DNX) to ASP.NET Core 1.0 在这里,您可以找到有关如何从RC1(DNX)迁移到ASP.NET Core 1.0的docs.asp.net说明。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 与发布ASP.NET Core(带有.net框架)vs 2015有关的问题 - Issue with Publishing ASP.NET Core (with .net framework) vs 2015 如何在VS 2015中自定义ASP.NET MVC 5脚手架? - How to customize ASP.NET MVC 5 scaffolding in VS 2015? VS 2015 ASP.NET vNext中的Ajax.BeginForm缺失了吗? - Ajax.BeginForm in VS 2015 ASP.NET vNext missing? 如何在安装vs2015之后在vs2015上安装Asp.Net? - How can I install Asp.Net on vs2015 after already installing vs2015 ? 如果我支持VS2015,我的分析器可以定位的Roslyn的最新版本是什么? - What's the latest version of Roslyn my analyzer can target if I support VS2015? 从VS 2013切换到VS 2015后ASP.NET Web应用程序中的异常 - Exception in ASP.NET web application after switching from VS 2013 to VS 2015 ASP.NET图表控件为空 - ASP.NET chart control comes empty VS2015代码覆盖率不适用于ASP.NET Core 1.0(以前称为ASP.NET 5)中的测试 - VS2015 Code Coverage not working with tests in ASP.NET Core 1.0 (formerly known as ASP.NET 5) 在Visual Studio 2015更新3中缺少“ASP.NET核心Web应用程序(.NET核心)”模板? - missing “ASP.NET Core Web Application (.NET Core)” template in Visual studio 2015 update 3? 如何在ASP.NET中更新当前的CSS版本 - How to update current css version in asp.net
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM