Reputation: 159
I am trying to run a project in ASP.NET 5 and always getting the below error. My laptop is Windows 10 64 bit machine. But dnx always set as x86 and changing the default alias command doesn't work in my case.
c:\Projects\HelloWorld>dnvm alias default 1.0.0-beta8 -arch x64 -r clr p
Updating alias 'default' to 'dnx-clr-win-x64.1.0.0-beta8'
Even after I was setting up my default run time as x64 but still I am getting the error as run time conflict.
Upvotes: 1
Views: 151
Reputation: 28425
Use dnvm use
instead of dnvm alias
:
dnvm use 1.0.0-beta8 -r clr -arch x64
Upvotes: 2