您可以在 Virtual Studio 中创建没有编程文件的项目吗?
所以我有这个网络应用程序解决方案。我还想在解决方案中包含 Google Chrome Portable,但我希望它成为一个单独的项目,以帮助组织我的代码。无论如何,是否可以创建一个仅包含一堆文件而没有任何编程文件的项目?当项目构建时,我还想运行一个 BAT 文件。
编辑:我还想在每次构建时将 Google Chrome 便携式项目的文件结果包含到我的网络应用程序中。
So I have this web application solution. I also want to include Google Chrome Portable in the solution, but I want it to be a separate project to help organizing my code. Is there anyway to create a project to just include a bunch of files without any programming files? When the project is built, I would also like a BAT file to be ran.
EDIT: I would also like to include a file result from the Google Chrome Portable project into my web application everytime it is built.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够创建一个新的空项目(我选择将 Win32 控制台应用程序创建为库)。然后,在
Project Properties -> 下自定义构建步骤
您可以提供要运行的命令行
。You should be able to create a new empty project (I chose to make an Win32 Console Application as a library). Then, under
Project Properties -> Custom Build Step
you can provide aCommand Line
to run.