Teoman shipahi
Teoman shipahi

Reputation: 23052

Cannot find DNX runtime dnx-clr-win-x86.1.0.0-beta-001598

For Win7 Machine I installed latest version of .net core from https://www.microsoft.com/net/core#windows

Here are my dotnetcore and dnvm versions

donetcore and dnvm versions

I also installed vs 2015 update 3. When I try to build my project I am getting following error:

Cannot find DNX runtime dnx-clr-win-x86.1.0.0-beta-001598

Seems like VS 2015 tries to use same version of dnx of sdk version (1.0.0-beta-001598)

When I check packages at nuget (https://www.nuget.org/packages/dnx-clr-win-x86/) I cannot find version of 1.0.0-beta-001598.

How can I fix this issue? enter image description here

Upvotes: 0

Views: 405

Answers (1)

Nick Acosta
Nick Acosta

Reputation: 1910

I assume you are trying to use the latest version?

If that is the case you can just remove the entire "sdk" section from your global.json and it will automatically choose the latest version.

Source:

https://docs.asp.net/en/1.0.0-rc1/conceptual-overview/understanding-aspnet5-apps.html#the-global-json-file

Upvotes: 3

Related Questions