构建解决方案后在bin文件夹中的多个exe

时间:2015-02-06 03:49:02

标签: c# .net winforms

构建Windows表单解决方案后,是否可以在debug / release文件夹中生成多个exe文件?

例如,我想在每次构建解决方案时在debug / release文件夹中生成2个exes,1。MyApp.exe 2. MyApp_setup.exe

由于

1 个答案:

答案 0 :(得分:1)

\bin\Debug\bin\Release文件夹只是默认设置,可以在项目设置中更改。

enter image description here (点击查看大图)

您需要做的就是将其更改为相对路径,使其成为项目可以看到的内容。

例如,如果您的文件夹结构类似于

C:\
 Code\
  MyAppSolution\
   MyApp\
   MyApp_Setup\

将两个项目更改为使用..\CommonBin\Debug\作为输出路径会将两个exe都放在C:\Code\MyAppSolution\CommonBin\Debug\中。


但是,还有第二个选项,如果您在构建MyApp时将MyApp_Setup项目的引用添加到MyApp_Setup,则会将MyApp.exe添加到Copy Local输出目录,因为它认为它是一个依赖项。确保在构建时true设置为{{1}}。

enter image description here