引用的DLL不复制到输出bin
我是一个新手,有一点关于visual studio,msbuild和脚本的知识。
我被分配了一个任务,为使用MSbuild构建项目创建自动化脚本,并且该项目有三种不同的配置,我需要按顺序构建它,因为有些项目依赖于其他配置的输出dll,在构建第一个配置时但是当我到达第二和第三个配置时失败了。 由于参考动态链接库未在选定配置的输出库中复制,导致它在某些项目上缺少组件引用。 而且,我不能编辑这些项目,这只是为了我的观点。
任何帮助我如何成功地建立它。
我的脚本如下所示:
& $msbuild ($master_sln) /t:Clean /p:Configuration=FirstConfiguration /p:Platform="Any CPU"
& $msbuild ($master_sln) /t:Rebuild /p:Configuration=FirstConfiguration /p:Platform="Any CPU"
& $msbuild ($master_sln) /t:Build /p:Configuration="SecondConfiguration" /p:Platform="Any CPU" /p:BuildProjectReferences=false
& $msbuild ($master_sln) /t:Build /p:Configuration="ThirdConfiguration" /p:Platform="Any CPU" /p:BuildProjectReferences=false
链接地址: http://www.djcxy.com/p/92433.html
上一篇: Referenced DLLs not copying to output bin
下一篇: FileNotFoundException when preprocessing T4 templates from build server