Build Configuration: Mixed Platform VS Any CPU

后端 未结 4 2050
遥遥无期
遥遥无期 2020-12-23 14:04

What\'s the difference between different Build Configuration settings e.g. Any CPU, Mixed Platform, WIN32 etc in Visual Studio.

4条回答
  •  南笙
    南笙 (楼主)
    2020-12-23 14:39

    The build configuration names don't mean very much - they proliferate if you have C++ and C# projects in the same solution (and even worse if you have mobile projects too), because the various types of projects use different configuration names, so you end up with lots of them.

    We try to keep deleting all the configurations we're not using, but that's hard work sometimes as often when you add a new project, unwanted configurations will be added back to the solution.

    My recommendations is to decide on what configurations you need (by looking at the actual settings within them), and then remove everything else.

提交回复
热议问题