user5555457
user5555457

Reputation: 159

Dnx running always set as x86, but it is not working properly

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'

dnx error screenshot

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

Answers (1)

Victor Hurdugaci
Victor Hurdugaci

Reputation: 28425

Use dnvm use instead of dnvm alias:

dnvm use 1.0.0-beta8 -r clr -arch x64 

Upvotes: 2

Related Questions