据我所知,我无法在visual studio express版本中同时构建多个配置,但我尝试使用msbuild和vbproj文件,但成效有限:
<Target Name="Build">
<MSBuild Projects="solution1.sln" Properties="Configuration=Debug;Platform=Any CPU" />
<MSBuild Projects="solution1.sln" Properties="Configuration=Release;Platform=Any CPU" />
<MSBuild Projects="solution1.sln" Properties="Configuration=Custom;Platform=Any CPU" />
</Target>
这很愉快地编译了前两个标准配置,但在Custom上失败并显示消息:
“指定的配置”自定义|任何CPU“无效。请指定有效的......”
请注意,自定义配置在visual studio中编译良好。
任何想法为什么会失败?