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
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.
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