<i id='j1EXP'><tr id='j1EXP'><dt id='j1EXP'><q id='j1EXP'><span id='j1EXP'><b id='j1EXP'><form id='j1EXP'><ins id='j1EXP'></ins><ul id='j1EXP'></ul><sub id='j1EXP'></sub></form><legend id='j1EXP'></legend><bdo id='j1EXP'><pre id='j1EXP'><center id='j1EXP'></center></pre></bdo></b><th id='j1EXP'></th></span></q></dt></tr></i><div id='j1EXP'><tfoot id='j1EXP'></tfoot><dl id='j1EXP'><fieldset id='j1EXP'></fieldset></dl></div>
  • <small id='j1EXP'></small><noframes id='j1EXP'>

    • <bdo id='j1EXP'></bdo><ul id='j1EXP'></ul>

      1. <tfoot id='j1EXP'></tfoot><legend id='j1EXP'><style id='j1EXP'><dir id='j1EXP'><q id='j1EXP'></q></dir></style></legend>

        在应用程序构建期间自动复制文件到输出

        时间:2023-05-23
        <tfoot id='yfhBr'></tfoot>

          <bdo id='yfhBr'></bdo><ul id='yfhBr'></ul>
          • <legend id='yfhBr'><style id='yfhBr'><dir id='yfhBr'><q id='yfhBr'></q></dir></style></legend>
                <tbody id='yfhBr'></tbody>

              1. <i id='yfhBr'><tr id='yfhBr'><dt id='yfhBr'><q id='yfhBr'><span id='yfhBr'><b id='yfhBr'><form id='yfhBr'><ins id='yfhBr'></ins><ul id='yfhBr'></ul><sub id='yfhBr'></sub></form><legend id='yfhBr'></legend><bdo id='yfhBr'><pre id='yfhBr'><center id='yfhBr'></center></pre></bdo></b><th id='yfhBr'></th></span></q></dt></tr></i><div id='yfhBr'><tfoot id='yfhBr'></tfoot><dl id='yfhBr'><fieldset id='yfhBr'></fieldset></dl></div>

                <small id='yfhBr'></small><noframes id='yfhBr'>

                  本文介绍了在应用程序构建期间自动复制文件到输出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  C# 项目中的文件有Copy to Output Directory 属性.但是在 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

                  这篇关于在应用程序构建期间自动复制文件到输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 Visual Studio 在 C++ 应用程序中查找内存泄漏 下一篇:使用 cl.exe 进行命令行编译?

                  相关文章

                  最新文章

                  <small id='vLM5h'></small><noframes id='vLM5h'>

                    <bdo id='vLM5h'></bdo><ul id='vLM5h'></ul>
                  <legend id='vLM5h'><style id='vLM5h'><dir id='vLM5h'><q id='vLM5h'></q></dir></style></legend>

                  1. <tfoot id='vLM5h'></tfoot>

                    1. <i id='vLM5h'><tr id='vLM5h'><dt id='vLM5h'><q id='vLM5h'><span id='vLM5h'><b id='vLM5h'><form id='vLM5h'><ins id='vLM5h'></ins><ul id='vLM5h'></ul><sub id='vLM5h'></sub></form><legend id='vLM5h'></legend><bdo id='vLM5h'><pre id='vLM5h'><center id='vLM5h'></center></pre></bdo></b><th id='vLM5h'></th></span></q></dt></tr></i><div id='vLM5h'><tfoot id='vLM5h'></tfoot><dl id='vLM5h'><fieldset id='vLM5h'></fieldset></dl></div>