Tagged Questions

5
votes
4answers
1k views

Pre-build MSBuild task to update AssemblyInfo not in sync with built exe

I am using a pre-build task in Visual Studio 2008 that invokes msbuild: C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe $(MSBuildProjectDirectory)\version.targets …
1
vote
5answers
141 views

Pre-build step in makefile

Hi! How can I run a script, which must execute before all other makefile commands? And it will be nice (but not mandatory) to the script is not executed if there is nothing to build. I've searched …
1
vote
2answers
156 views

Multiple Pre-Build Events in Visual Studio?

I've followed a blog post by Scott Hanselman for managing configuration with PreBuild Events and have it working fine. I now want to split up my configuration into a couple of different files, so …
1
vote
1answer
37 views

Making output in VC++ point to lines of source code

At work we have a prebuild step that reads over our source code and automatically generates data based on some annotations in the code. If the prebuild tags are poorly formatted or it finds something …
1
vote
2answers
700 views

Visual Studio Setup Project— adding prebuild step

Hi, I want to make my build process for producing a setup project to be a single click. However, I also want to add {smartassembly} to the build step to obfuscate the build, but only on our build …
0
votes
4answers
271 views

What is the easiest way to reset ERRORLEVEL to zero?

I have a post-build event that runs some commands for a c# project. The last command would sometimes cause the ERRORLEVEL value not equils to zero and then the build fails. I want to append an extra …
0
votes
2answers
713 views

Problem with prebuild event in Visual Studio replacing $(SolutionDir) with *Undefined*

I believe the problem is documented here and looks like it might be a bug in visual studio, but I'm wondering if anyone knows of a workaround. Basically I have the following 2 lines (among other …
0
votes
2answers
614 views

What’s an easy way to access prebuild macros such as $(SolutionDir) and $(DevEnvDir) from code in C#?

Right now I'm thinking write the paths to a file in the pre-build event and then read from that file in the code, but I'm wondering if there's an easier more elegant way. edit: This is sort of a …