How to force Visual Studio to use a specific version of DNX

I was messing around with dnvm and I started the dnvm update, putting me on beta5. However, the project I'm working on remains in beta 4 (at least for now).

I'm trying to come back and lose. I deleted the runtime folder. Now, when I open a project or try to create a new one, I get the following error:

enter image description here

Expected because I deleted the folder. However, I want to use dnx-clr-beta4. My dnvm list is as follows:

enter image description here

What do I need to do so that Visual Studio looks instead of a beta version? Thank you for your time.

+4
source share
1 answer

DNX global.json, (, ).

{
    "sdk": {
        "version": "1.0.0-beta4"
    }
}

, Visual Studio.

- Visual Studio:

+5

All Articles