The Dnx Runtime package needs to be installed. See output window for more details

后端 未结 7 2125
闹比i
闹比i 2021-01-01 17:26

I\'m using Visual Studio 2015 Enterprise Edition and created simple Asp.net5 application. When I try to debug I\'m getting this error.

The Dnx Runtime packag         


        
相关标签:
7条回答
  • 2021-01-01 17:49

    Found the solution at last !,

    First run the command,

    dnvm upgrade

    if this command fails, with errors like the process is being used, run it again. And it will work after a few tries, i think the lock is due to some retires VS is doing to install the DNU properly. After this command run,

    dnvm upgrade -r CoreClr

    this command should restore your Core packages. It worked for me on some projects.

    But if even after this the project is showing the same error, then close Visual Studio, reopen it and you will notice that the references are not loading. And it will ask your to look at the error list, which is good as once you look at the 35 odd errors, one of them give you a command to run, Run this command,

    dnu restore

    These three commands should get your project building.

    0 讨论(0)
  • 2021-01-01 17:50

    I believe this is the same as a known issue and relates to not having the correct version of power shell installed. You can see the solution that helped me here

    0 讨论(0)
  • 2021-01-01 17:51

    I have met with same issue and here I found the solution.To begin with you need an internet connection and visit the this link:

    http://www.codeproject.com/Tips/1039152/DNX-SDK-Version-dnx-clr-win-x-beta-Failedto

    First of all,you need to set the path in Environment Variables for Powershell , example:

    C:\Windows\System32\Windows PowerShell\1.0
    

    And then enter the following comments mentioned in the website..in Command Prompt(cmd.exe).

    0 讨论(0)
  • 2021-01-01 17:59

    I got this error when I selected the Class Library (Package) project type from the Templates > Visual Studio C# > Web template structure (see image).

    What I really wanted was the "Class Library" which has the description "A project for creating a C# class library (.dll)". When I created a new project under this type, I did not get this error.

    0 讨论(0)
  • 2021-01-01 18:02

    You need to update powershell tools for vs.

    Tools -> Extensions and Updates -> Updates -> Visual Studio Gallery -> PowerShell Tools for Visual Studio 2015

    0 讨论(0)
  • 2021-01-01 18:04

    Run it from the NuGet console (in VS 2015: Tools > NuGet Package Manager > Package Manager Console)

    dnvm upgrade
    dnvm upgrade -r CoreClr
    
    0 讨论(0)
提交回复
热议问题