I'm trying to change my .NET Core Web Application to use the x86 version of the .NET Core SDK.
I installed the x86 version from here. I can see it in C:\Program Files (x86)\dotnet\sdk\1.0.0-preview2-003131
I updated my global.json to this:
{
"projects": [ "src" ],
"sdk": {
"version": "1.0.0-preview2-003131",
"architecture": "x86"
}
}
But I get the error:
The project is configured to use .NET Core SDK version 1.0.0-preview2-003131 which is not installed or cannot be found under the path C:\Program Files\dotnet. These components are required to build and run this project. Download the version of .NET Core SDK specified in global.json or update the SDK version in global.json to the version that is installed.
I guess I need to tell my application to look in C:\Program Files (x86)\dotnet
How do I do this?
Thanks for any help!