利用CCNet(CruiseControl.Net)做打包文件时,碰到了一个问题,就是MSBuild没法编译Setup工程(*.vdproj),改用devenv.com配置,即可正常生成:

    vs2010 rc1通过,正常生成了安装文件。


    
<project name="projectname">
      
<workingDirectory></workingDirectory>
      
<artifactDirectory></artifactDirectory>
      
<labeller type="defaultlabeller">
        
<incrementOnFailure>False</incrementOnFailure>
        
<initialBuildLabel>1588</initialBuildLabel>
        
<labelFormat>0</labelFormat>
        
<postfix />
        
<prefix />
      
</labeller>
      
<sourcecontrol type="svn">
        
<trunkUrl>svn://。。。</trunkUrl>
        
<workingDirectory></workingDirectory>
        
<autoGetSource>true</autoGetSource>
        
<deleteObstructions>true</deleteObstructions>
        
<cleanUp>true</cleanUp>
        
<timeout>600000</timeout>
        
<username></username>
        
<password></password>
      
</sourcecontrol>
      
<tasks>
        
<devenv>
          
<executable>D:\Microsoft Visual Studio 10.0\Common7\IDE\devenv.com</executable>
          
<solutionfile>D:\ccnetPrj\Culvert.sln</solutionfile>
          
<buildtype>Build</buildtype>
          
<configuration>Debug</configuration>
          
<buildTimeoutSeconds>60000</buildTimeoutSeconds>
        
</devenv>
      
</tasks>
      ......
      ......
      ...... 

 

 

 

相关文章:

  • 2021-12-29
  • 2021-04-07
  • 2021-12-26
  • 2021-05-23
  • 2021-10-17
  • 2021-11-23
  • 2021-10-13
猜你喜欢
  • 2021-11-20
  • 2021-05-15
  • 2022-12-23
  • 2021-10-16
  • 2021-11-05
  • 2021-07-16
  • 2021-11-18
相关资源
相似解决方案