Start an asp.net core project as x86 under visual studio 2015

前端 未结 3 553
-上瘾入骨i
-上瘾入骨i 2020-12-18 09:48

I have a vs2015 solution containing an asp.net core project and have configured its project.json as follow :

{
  \"buildOptions\": {
    \"emitEntryPoint\":          


        
3条回答
  •  佛祖请我去吃肉
    2020-12-18 10:46

    There are 2 options:

    1. (global) Uninstall the 64 bit .net SDK and install the 32 bit one. Restart VS afterwards.
    2. (local) Put a new .net SDK in a different folder and add from a console that path to your PATH. Then start VS from there. It will pick the first dotnet it finds on the PATH.

提交回复
热议问题