Exported project template in VS2017 misses source files(VS2017中导出的项目模板遗漏源文件)
问题描述
当我使用 Project ->Visual Studio 2017 中的导出模板
选项,生成的 ZIP 文件包括主要项目文件,但不包括任何 *.cpp
和 *.hpp
文件我已经添加.如何在模板中包含所有内容?我还应该注意到,这种行为似乎在某个时候在更新中发生了变化.
When I use the Project -> Export template
option in Visual Studio 2017, the resulting ZIP file includes the main project files, but not any of the *.cpp
and *.hpp
files that I've added. How do I include everything with the template? I should also note that this behavior seems to have changed in an update at some point.
推荐答案
需要手动编辑.vstemplate文件并添加<CreateInPlace>true</CreateInPlace>
在 <TemplateData>
标记中,所以它看起来像这样:
You need to manually edit the .vstemplate file and add <CreateInPlace>true</CreateInPlace>
in the <TemplateData>
tag so it looks like this:
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Project">
<TemplateData>
<Name>TemplateTest</Name>
<Description><No description available></Description>
<ProjectType>JavaScript</ProjectType>
<ProjectSubType>
</ProjectSubType>
<SortOrder>1000</SortOrder>
<CreateNewFolder>true</CreateNewFolder>
<CreateInPlace>true</CreateInPlace>
<DefaultName>CodovaTemplateTest</DefaultName>
<ProvideDefaultName>true</ProvideDefaultName>
<LocationField>Enabled</LocationField>
<EnableLocationBrowseButton>true</EnableLocationBrowseButton>
<Icon>__TemplateIcon.ico</Icon>
</TemplateData>
这篇关于VS2017中导出的项目模板遗漏源文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:VS2017中导出的项目模板遗漏源文件
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01