更改控制台应用程序的默认设置
我希望控制台应用程序默认为
多线程调试。 警告级别4。 建立浏览信息。 没有资源文件夹。
有谁知道有什么技术可以让我使用我想要的选项创建控制台应用程序,而无需手动设置它。
I would prefer that a console app would default to
multithreaded debug.
warning level 4.
build browse information.
no resource folder.
Does anyone know of any technique that would allow me to create a console app, with my desired options, without manually setting it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,你可以这么做。 您想要的是创建自己的项目模板。 然后,您可以从新建项目向导中选择该模板。 我无法找到有关如何在 Visual Studio 6 中创建项目模板的文档,但是 这篇 MSDN 文章 解释了 Visual Studio 2005 的过程。希望您会发现这些说明非常相似。
Yes, you can do that. What you want is to create your own project template. You can then select that template from the New Project wizard. I wasn't able to location documentation on how to create a project template in Visual Studio 6, but this MSDN article explains the procedure for Visual Studio 2005. Hopefully you will find those instructions to sufficiently similar.
我的结论是这是不可能的。
支持 Windows 项目的自定义应用程序向导,但不支持控制台项目。
这是我进行研究的地方。
http://www.codeproject.com/KB/cpp/genwiz.aspx?fid=15478&df=90&mpp=25&noise=3&
sort= Position&view=Quick&select=1266895
http://msdn.microsoft.com /en-us/library/ms950410.aspx
http://msdn.microsoft.com/en-us/library/aa300499(VS.60).aspx
自定义应用程序向导将接受 Windows 项目作为模板的基础,但不接受控制台项目。 将出现一个消息对话框,声明所选的基础项目不是 C++ 项目。
I have concluded this is impossible.
The is support for custom appwizards for windows projects, but not console projectcs.
This is where I did research.
http://www.codeproject.com/KB/cpp/genwiz.aspx?fid=15478&df=90&mpp=25&noise=3&
sort=Position&view=Quick&select=1266895
http://msdn.microsoft.com/en-us/library/ms950410.aspx
http://msdn.microsoft.com/en-us/library/aa300499(VS.60).aspx
The custom appwizard will accept windows projects as a base for the template, but not console projects. A message dialog appears that claims that the base project selected is not a c++ project.
事实证明这很容易做到。
在工作区中创建一个新的控制台项目,将其命名为 0_console
按照您想要的方式设置其特征。 (警告级别 4...)
退出msvc,使用windows资源管理器复制项目目录。
将其粘贴到与 0_console 项目相同的目录级别。
将其重命名为您想要的新项目名称。
进入该目录,编辑 dsp 文件,并替换 0_console 值
通过新名称。
保存,然后进入 msvc,然后将项目插入工作空间
This turns out to be fairly easy to do.
Create a new console project in your workspace, name it 0_console
Set its characteristics the way you want them to be. (warning level 4 ...)
get out of msvc, and use windows explorer to copy the project directory.
paste it in at the same directory level as the 0_console project.
rename it to be what ever you want the new project to be.
go into that directory, and edit the dsp file, and replace the 0_console values
by the new name.
save that, and go into msvc, and simply insert the project into the work space