How to fix DNX/DNVM in Visual Studio 2015?

后端 未结 8 831
时光取名叫无心
时光取名叫无心 2020-12-01 06:02

Today I installed VS 2015 on Windows 7 x64. Mainly to test new .Net Core features and etc. And for test I created new C# \"Console Application (Package)\" solution and got t

相关标签:
8条回答
  • 2020-12-01 06:45

    try

    dnvm update-self
    dnvm install -u  -r clr  -OS win  -a x86  beta5 -ngen 
    

    important are the -u parameter (unstable) and the beta5 version string.

    0 讨论(0)
  • 2020-12-01 06:47

    If anyone have problems with dnx not available in Visual Studio 2015 while watching some bit outdated tutorials ( like me ) check below link

    The RC2 release of .NET Core and ASP.NET Core 1.0 moved from DNX to the .NET Core CLI.

    In the table on the linked page you will the mapping between the DNX/DNU commands and their CLI counterparts. for example:

    dnx run becomes dotnet run

    0 讨论(0)
提交回复
热议问题