Tagged Questions

17
votes
4answers
5k 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 ...
5
votes
2answers
909 views

Auto-generating C++ code in a pre-build event using Visual Studio

I'm trying to use a pre-build event in Visual Studio (VS 2005 to be specific) to run a Python script which will automatically generate a .cpp file. The trouble I'm running into is that the compiler ...
2
votes
2answers
70 views

Indirect way to reference “C:\Windows\Microsoft.NET\Framework64\v4.0.30319\datasvcutil.exe” in a prebuild event

I am running the datasvcutil.exe command in a prebuild event. datasvcutil.exe is located in "C:\Windows\Microsoft.NET\Framework64\v4.0.30319" (on 64 bit machines.) I can just hard code this as ...
2
votes
3answers
213 views

Swallowing errors in pre-build steps in Visual Studio 2010

My solution has a bunch of projects one of which is a windows service; I have a prebuild step to stop the service and a postbuild step to restart it (this way the windows service exe is not locked ...
2
votes
2answers
2k views

Visual Studio Setup Project— adding prebuild step

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 ...
2
votes
2answers
2k 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 ...
1
vote
3answers
176 views

Pre-build event to run before any project in a solution is built

I have a little program I wrote to download all NuGet packages for a solution. I would like to setup a pre-build event that would run this program every time I build. But I need it to run before the ...
1
vote
1answer
274 views

Visual Studio pre-build action to skip project build based on condition

In a VS 2008 solution, I have several projects. I run the build on the entire solution with msbuild. Based on the existence of a file on the disk, I want to skip the build for one of the projects. How ...
1
vote
1answer
211 views

I want to run a script during C# build, but **only** when the project is not up to date

I am trying to set up a proper way to do automatic versioning for my C# projects in .Net. The requirements are: the assembly is to be built only when is is not up to date. (normal behaviour in ...
0
votes
0answers
26 views

Visual Studio pre-build event to udpate manifest XML file

I have a manifest XML (see below) that I want to update the title and description elements. I would like to do it as part of a pre-build event in Visual Studio 2010. Does anyone have a sample of ...
0
votes
0answers
77 views

How to force a pre-build step in Visual Studio 6 without Rebuild All?

I've set up a custom build step to write the latest SVN revision number to a generated header file using SubWCRev and that is working great. When I do a rebuild all, the header is generated and then ...
0
votes
1answer
94 views

Running a pre-build event on every file in a MSVC 2010 project

I'm trying to get Visual Studio 2010 to execute a FOR loop - just like the ones that can be done in a .bat file - as a pre-build event command... No luck this far. Long story short, I'm trying to get ...
0
votes
1answer
166 views

How to pick up the latest version AssemblyInfo.cs as modified by the pre-build event?

I'm currently playing around with the pre and post build events in VS2010, trying to get my SVN version number into the AssemblyInfo.cs file and hence compiled into my build dll. In the pre-build I ...
0
votes
1answer
605 views

Pre-build event fails

I set a prebuild event to: $(TargetDir)MyConsoleApp But when I run the application I get the following output: ------ Build started: Project: BlahBlahBlah, Configuration: Debug x86 ------ ...