I've just created a new ASP.NET 5 web application in Visual Studio 2015. It runs fine under IIS Express, but when I create a site in IIS 10 on Windows 10 and point it at the wwwroot
folder I get a YSOD:
Couldn't determine an appropriate version of runtime to run
This has been discussed elsewhere but in my case the project.json
file looks ok:
"frameworks": {
"dnx451": { },
"dnxcore50": { }
},
As with the other post, here's the output of dmvm list
:
Active Version Runtime Architecture Location Alias ------ ------- ------- ------------ -------- ----- 1.0.0-beta5 clr x64 C:\Users\Simon\.dnx\runtimes 1.0.0-beta5 clr x86 C:\Users\Simon\.dnx\runtimes 1.0.0-beta5 coreclr x64 C:\Users\Simon\.dnx\runtimes 1.0.0-beta5 coreclr x86 C:\Users\Simon\.dnx\runtimes
All of the dependencies are beta5
in project.json
Has anyone else got this to work with IIS on Windows 10?