Automatic copy files to output during application building(在应用程序构建期间自动复制文件以输出)
问题描述
C# 项目中的文件有复制到输出目录 属性.但在 VC++ 项目中它不存在.我知道,我可以在 VC++ 中使用 Build events 并在那里写类似
There is Copy to Output Directory property for files in C# projects. But in VC++ projects it is absent. I know, that I can use Build events in VC++ and write there something like
xcopy /y /d %(FullPath) $(OutDir)
有没有办法避免使用 CMD(和其他脚本方法)?在这种情况下,msbuild 可以做点什么吗?
Is there a way to avoid the use of CMD (and other scripting methods)? Can msbuild do something to help in this case?
推荐答案
这取决于您使用的 Visual Studio 版本.Visual Studio 2008 中的 VC++ 项目文件的格式不是 MSBuild,所以在 PostBuildStep 中使用 xcopy 是一个不错的选择.
It depends on what version of Visual Studio you are using. Format of VC++ project file in Visual Studio 2008 is not MSBuild and so using xcopy in PostBuildStep is a good choice.
Visual Studio 2010 中的 VC++ 项目具有 MSBuild 格式.因此,就有了 MSBuild Copy 任务的功能.
VC++ project in Visual Studio 2010 has MSBuild format. Thus, there is functionality of MSBuild Copy task.
下面是一个示例:
<Copy
SourceFiles="%(FullPath)"
DestinationFolder="$(OutDir)"
/>
如果目标目录不存在,则自动创建
If the destination directory does not exist, it is created automatically
MSDN Copy 任务参考是这里
An MSDN Copy task reference is here
这篇关于在应用程序构建期间自动复制文件以输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在应用程序构建期间自动复制文件以输出
基础教程推荐
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 设计字符串本地化的最佳方法 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31