如何更改默认的C ++模板文件?

问题描述 投票:0回答:1

我正在使用Visual Studio 2019,每当我创建一个新的C ++项目时,它都会给我一个默认文件,其中包含以下代码:

// Template Test.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>

int main()
{
    std::cout << "Hello World!\n"; 
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file

这是非常不必要的信息,需要一分钟才能将其改为我真正想要的东西;

// Template Test.cpp : This file contains the 'main' function. Program execution begins and ends there.


#include <iostream>

using namespace std;

int main() {
    cout << "Hello World!\n"; 
}

它不需要花费太多时间,但每次我在VS 19中创建一个新的C ++控制台项目时我都必须这样做。

在我的计算机上快速搜索后,我在以下位置找到了一个名为“模板”的文件夹:

C:\ Users \ yale \ Documents \ Visual Studio 2019 \ Templates

这个文件有子目录,可以让我认为它是正确的地方,但没有任何模板文件,我可以看到。

如何使用Visual Studio 2019修改C ++中不同项目的模板文件?

c++ visual-studio visual-studio-2019 file-templates
1个回答
0
投票

有两种方法可以选择其中任何一种。

使用“导出模板向导”:

Visual Studio提供了一个导出模板向导,可用于更新现有模板:

  • 从菜单栏中选择“文件”>“新建”>“项目”。
  • 选择要更新的模板,然后继续完成创建新项目的步骤。
  • 在Visual Studio中修改项目。例如,更改输出类型或将新文件添加到项目中。
  • 在“项目”菜单上,选择“导出模板”。 “导出模板向导”将打开。
  • 按照向导中的提示将模板导出为.zip文件。
  • (可选)将.zip文件放在以下目录中:%USERPROFILE%\ Documents \ Visual Studio \ Templates \ ProjectTemplates以使其可供选择。如果未在“导出模板向导”中选择“自动将模板导入Visual Studio”选项,则需要执行此步骤。
  • 删除旧模板.zip文件。

要手动更新现有模板:

  • 找到包含该模板的.zip文件。用户项目模板位于%USERPROFILE%\ Documents \ Visual Studio \ Templates \ ProjectTemplates。
  • 解压缩.zip文件。
  • 修改或删除当前模板文件,或将新文件添加到模板。
  • 打开,修改和保存.vstemplate XML文件以处理更新的行为或新文件。
  • 选择模板中的文件,然后从右键单击或上下文菜单中选择“发送到>压缩(压缩)”文件夹。您选择的文件将压缩为.zip文件。
  • 将新的.zip文件放在与旧.zip文件相同的目录中。
  • 删除提取的模板文件和旧模板.zip文件。

此外,您还可以访问source page了解更多详情。

© www.soinside.com 2019 - 2024. All rights reserved.