Tagged Questions
5
votes
4answers
9k views
Visual studio custom build step rule?
Using Visual Studio 2008, When I add to a C++ project a file that is not .c/.cpp/.h/.rc or anything the IDE doesn't recognize a dialog pops up which asks me if I want to create a custom build step ...
3
votes
2answers
955 views
Should I auto-increment the assembly version when I build my software?
In Visual Studio 2003, you could easily set your project assembly to auto-increment every time you built it, but with Visual Studio 2005, this functionality was removed. You can still auto-increment ...
2
votes
2answers
172 views
Custom Build Rules in Visual Studio, with multiple outputs
We have a C++ project that uses a custom object-relational-mapping system, in which tables are defined by .tbl files. These are then run through a code-generator that creates, for each, a .h and a ...
1
vote
0answers
10 views
Can pre-build events affect the defines and the include paths of a Visual Studio project?
Is it possible to modify the list of defines/include paths passed to the Visual Studio compiler from a pre-build step?
0
votes
1answer
39 views
Auto version files in VS Custom Build Step
I want to do two things in a custom build step (pre build) but my batch file skills are a little rusty to say the least so am having a little trouble figuring it out!
I need to:
Find all resource ...
0
votes
1answer
135 views
What is the difference between a Custom Build Step and a Post-Build Event?
Both project settings allow me to execute custom commands. What are the benefits or drawbacks of each?
0
votes
1answer
546 views
Why are my Custom Build steps not running in Visual Studio 2010?
I have a Visual Studio project with several Custom Build steps in it, but some of them are simply failing to run. There are no errors and no warnings, and according to the build logs they are ...
0
votes
1answer
241 views
Set the default description for custom build rules in Visual Studio (2008)
In VS, it is possible to set a custom build rule at the individual file level. However, unless you change the description of the build step (which is what msbuild outputs when running the external ...
0
votes
1answer
138 views
How do I set up a Java-like language (LeJOS NXJ) in Visual Studio 2005 that uses an external compiler?
Recently, I installed the JDK and a java library called LeJOS NXJ, for controlling a LEGO Mindstorms robot. I'd like to be able to set up the language to run through visual studio, which offers J# ...