visual-studio – Visual Studio Online – “指定的解决方案配置”Debug | any cpu“无效”

我需要在Visual Studio Online下构建VS解决方案.但是当我运行它时,我收到一个错误:

C:\a\50009cdf\Mobius-ASG\Prototyping\VCPROJ\SystemAl.sln.metaproj(0,0): Error MSB4126: The specified solution configuration "Debug|any cpu" is invalid. Please specify a valid solution configuration using the Configuration and Platform properties (e.g. MSBuild.exe Solution.sln /p:Configuration=Debug /p:Platform="Any CPU") or leave those properties blank to use the default solution configuration.

我试图将’BuildPlatform’更改为’Mixed Platforms’,将’BuildConfiguration’更改为’Release’.但它没有帮助,我得到了相同的错误,但有新的值:

The specified solution configuration "Release|Mixed Platforms" is invalid. Please specify a valid solution configuration using the Configuration and Platform properties (e.g. MSBuild.exe Solution.sln /p:Configuration=Debug /p:Platform="Any CPU") or leave those properties blank to use the default solution configuration

此外,我试图禁用和删除此变量,但仍然有相同的错误.
我能解决它吗?

最佳答案 要设置项目的配置和平台,请在解决方案资源管理器中右键单击项目,然后选择配置管理器.

在Configuration Manager对话框中,选择所需的配置和平台值.将待处理的更改签入VSO,然后重新运行构建而不进行任何参数.您现在应该成功运行构建.
《visual-studio – Visual Studio Online – “指定的解决方案配置”Debug | any cpu“无效”》

点赞