如何关闭“预编译头”,默认“选中”女士VS

发布于 2024-10-19 15:05:35 字数 40 浏览 1 评论 0原文

当我创建一个新项目时,预压缩标头默认打开。如何将其设置为默认关闭?

When I make a new project, the precomp header defaults on. How do I make it default off?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴我心暖 2024-10-26 15:05:35

在 VS 安装目录的 vc\vcwizards\appwiz\generic\application\html\xxxx 子目录中找到 AppSettings.htm 文件。 xxxx 是您的语言 ID,英语为 1033。复制该文件并在文本编辑器中打开它。找到 InitControls javascript 函数。将行添加

 PRE_COMPILED_HEADER.checked = false;

到检查 CONSOLE_APP.checked 的 if() 语句中。根据需要进一步调整,我没有另外检查过这一点。

Locate the AppSettings.htm file in the vc\vcwizards\appwiz\generic\application\html\xxxx subdirectory of the VS install directory. xxxx is your language id, it is 1033 for English. Make a copy of the file and open it in a text editor. Locate the InitControls javascript function. Add the line

 PRE_COMPILED_HEADER.checked = false;

to the if() statement that checks CONSOLE_APP.checked. Further tweak as needed, I haven't otherwise checked this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文