Unfortunately it looks like for various reasons I'm going to have to use Visual Studio 6 instead of a newer version of VS.
不幸的是,由于各种原因,我将不得不使用Visual Studio 6而不是更新版本的VS.
It's been a long time since I've used it. I'm looking through its menus and don't see any obvious way to set up any custom build steps (pre-build, post-build, pre-link... anything would help actually).
自从我使用它已经有很长一段时间了。我正在浏览它的菜单,并没有看到任何明显的方法来设置任何自定义构建步骤(预构建,后期构建,预链接......实际上任何事情都有帮助)。
Can anyone give me instructions on how to set up steps like this?
任何人都可以给我说明如何设置这样的步骤?
1 个解决方案
#1
5
Open your project, then open the Project Settings screen (Project → Settings or ALT-F7). Alternatively, right click on a file in the FileView and select Settings.
打开项目,然后打开“项目设置”屏幕(项目→设置或ALT-F7)。或者,右键单击FileView中的文件,然后选择“设置”。
From the Project Settings screen, go to the General tab and check "Always use custom build step". This means that the file you just chose will be an input file for a custom build step. From the "Custom Build" tab you can then give the commands to run and specify what files will be generated.
在“项目设置”屏幕中,转到“常规”选项卡,然后选中“始终使用自定义构建步骤”。这意味着您刚刚选择的文件将是自定义构建步骤的输入文件。然后,从“自定义构建”选项卡中,您可以指定要运行的命令并指定要生成的文件。
For pre-link, post-build and such, select an executable (or library) from the Project Settings screen. Then use the little arrow button to scroll to the rightmost tabs. From there you'll find the Pre-link and Post-build steps.
对于预链接,后期构建等,从“项目设置”屏幕中选择可执行文件(或库)。然后使用小箭头按钮滚动到最右边的选项卡。从那里你可以找到Pre-link和Post-build步骤。
It's quite simple, really, I'm sure this is enough to get you started.
这很简单,真的,我确信这足以让你入门。
#1
5
Open your project, then open the Project Settings screen (Project → Settings or ALT-F7). Alternatively, right click on a file in the FileView and select Settings.
打开项目,然后打开“项目设置”屏幕(项目→设置或ALT-F7)。或者,右键单击FileView中的文件,然后选择“设置”。
From the Project Settings screen, go to the General tab and check "Always use custom build step". This means that the file you just chose will be an input file for a custom build step. From the "Custom Build" tab you can then give the commands to run and specify what files will be generated.
在“项目设置”屏幕中,转到“常规”选项卡,然后选中“始终使用自定义构建步骤”。这意味着您刚刚选择的文件将是自定义构建步骤的输入文件。然后,从“自定义构建”选项卡中,您可以指定要运行的命令并指定要生成的文件。
For pre-link, post-build and such, select an executable (or library) from the Project Settings screen. Then use the little arrow button to scroll to the rightmost tabs. From there you'll find the Pre-link and Post-build steps.
对于预链接,后期构建等,从“项目设置”屏幕中选择可执行文件(或库)。然后使用小箭头按钮滚动到最右边的选项卡。从那里你可以找到Pre-link和Post-build步骤。
It's quite simple, really, I'm sure this is enough to get you started.
这很简单,真的,我确信这足以让你入门。