是否有可能在visual basic express edition 2008中同时构建多个配置?

时间:2010-11-06 21:47:40

标签: .net vb.net visual-studio msbuild .net-3.5

据我所知,我无法在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中编译良好。

任何想法为什么会失败?

0 个答案:

没有答案