无法将平台从x86更改为任何CPU

时间:2016-03-27 07:04:27

标签: c# visual-studio platform

我正在使用VS 2015.不知怎的,我错误地设置了一些东西,使我的解决方案的一个项目的平台固定为x86或x64。我想将它改回“Any CPU”,就像默认设置一样。但我发现我不能〜 那么我怎样才能改回来呢?

There is a picture showing the situation of the properties page and the configuration manager

==更新=====

  1. 不,我没有为win10应用程序或其他东西开发UWP-App。只是传统的C#winform。
  2. 至于“您是否尝试点击新...并从那里选择”任何CPU“?是的我有,但就我而言,它不起作用,无论我从“复制设置”中选择什么。 Here is an image showing what I see

1 个答案:

答案 0 :(得分:1)

您可以右键单击该项目,然后选择卸载项目。再次右键单击该项目并编辑.csproj。在那里,您可以编辑Configuration Manager设置。

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>