标签:mis files star 错误提示 add doc 出现 name Edito
当我使用我自己创建的模板生成工程,打开文件时,会出现“The document cannot be opened. It has been renamed, deleted or moved”错误提示。
好像这个bug只在community版本中。
这时我们需要手工去修改模板文件
Here‘s how I solved this issue:
- Follow your steps 1 to 6
- At step 7 make sure to uncheck "Automatically import the template into Visual Studio"
- Click Finish
- Extract the just created zip file of your template into a folder of your choice
- Now copy all your source (.cpp) and header (.h) files from your original SFML project to the extracted folder
- In this folder look for MyTemplate.vstemplate and open it in a text editor
- You will see a TemplateData and TemplateContent section
- Inside the TemplateData section add the line <CreateInPlace>true</CreateInPlace>
- Inside the TemplateContent section add for each copied file from step 5 the lines
<ProjectItem ReplaceParameters="false" TargetFileName="filename.cpp">filename.cpp</ProjectItem> or
<ProjectItem ReplaceParameters="false" TargetFileName="filename.h">filename.h</ProjectItem>- Now put all files back into a zip file
- Copy your new zip file to Visual Studio 2015\Templates\ProjectTemplates folder
- Restart Visual Studio and open a new project from your project template
参考自:https://social.msdn.microsoft.com/Forums/vstudio/en-US/24b38dbb-c445-47a4-a05b-c9c12cfa6a6b/visual-studio-community-2015-source-file-missing-from-template?forum=vssetup
VS2017 community创建模板错误 The document cannot be opened. It has been renamed, deleted or moved
标签:mis files star 错误提示 add doc 出现 name Edito
原文地址:https://www.cnblogs.com/xiyu714/p/9426458.html