构建时将一个项目的全部内容复制到另一个项目的文件夹中(Visual Studio 2013)
Copy the entire contents of a project in a folder of another project, when build (Visual Studio 2013)
我有一个 Visual Studio 2013 年的解决方案,在 2 个项目 PJ1 和 PJ2 中。
我的目标是将 PJ1 的全部内容复制到位于 PJ2 下的文件夹 (myFolder) 中。此外,当我为 PJ1 执行构建时,必须发生复制。
我尝试使用 xcopy 没有结果:
xcopy /E /Y "$(ProjectDir)" "$(SolutionDir)PJ2\myFolder\"
有什么想法吗?
试试这个 - 假设 PJ2\MyFolder 是您的输出文件夹
Copy build assembly and all the components in project PJ1
xcopy "$(ProjectDir)$(OutDir)*.*" "$(SolutionDir)LambdaInXdocument\Myfolder" /E /Y
Copy all the files(.cs and others) & directories where .csproj resides-
xcopy "$(ProjectDir)*.*" "$(SolutionDir)LambdaInXdocument\Myfolder" /E /Y
我有一个 Visual Studio 2013 年的解决方案,在 2 个项目 PJ1 和 PJ2 中。 我的目标是将 PJ1 的全部内容复制到位于 PJ2 下的文件夹 (myFolder) 中。此外,当我为 PJ1 执行构建时,必须发生复制。 我尝试使用 xcopy 没有结果:
xcopy /E /Y "$(ProjectDir)" "$(SolutionDir)PJ2\myFolder\"
有什么想法吗?
试试这个 - 假设 PJ2\MyFolder 是您的输出文件夹
Copy build assembly and all the components in project PJ1
xcopy "$(ProjectDir)$(OutDir)*.*" "$(SolutionDir)LambdaInXdocument\Myfolder" /E /Y
Copy all the files(.cs and others) & directories where .csproj resides-
xcopy "$(ProjectDir)*.*" "$(SolutionDir)LambdaInXdocument\Myfolder" /E /Y