The pre-build-event tag has no wiki summary.
0
votes
1answer
26 views
pre-build event to change setup project's ProductVersion doesn't take effect until after the build
I've followed the steps described here to modify the ProductCode and ProductVersion on my setup project on each build, using a prebuild event.
(meaning- I created a console application that uses the ...
0
votes
1answer
39 views
Generate C# classes from XML only if XML has changed
I have a pre-build event on a C# project which runs xsltproc to transform some XML into C# source files. The generated source then gets built in the normal way. This means that the project always ...
0
votes
0answers
6 views
C++ Installer PreBuildEvent to verify another application is installed
Is there a way to use the PreBuildEvent property to check and see if an application has been installed and then either install that application or pop up a message for the user to install it first? ...
0
votes
0answers
80 views
Write a pre-build script to change files from BuildAction Embedded Resource to None in VS 2010?
Is it possible to write a pre-build event in Visual Studio 2010 that will change the build action from embedded resource to none for a file, or all files in a specific folder? Then, write a post-build ...
0
votes
0answers
13 views
Add custom resource to Silverlight application with pre-build event
I want to add source code of my silverlight project to resource as flat text files (for use in run-time with Application.GetResourceStream()). How I can do it with pre-build event of my project?
0
votes
0answers
39 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
1answer
108 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
449 views
How to interpret pre build error codes from Visual Studio 2010
I have been working with Visual Studio pre build events and I find the error codes rather unhelpful
for example, adding a pre-build event like this:
$(ProjectPath)\DoStuff.exe
This gives me an ...
0
votes
1answer
174 views
How can I set a pre-build event in an ASP.Net MVC 2 Application in Visual Web Developer 2010 Express?
I am developing an ASP.Net MVC 2 Application in Visual Web Developer 2010 Express.
I was researching about using the build configuration to copy the right web.config file for development and testing ...
0
votes
1answer
70 views
Run Add-in from PrebuildEvent
I'm writing an VS 2008 add-in to synchronize Setup project Version with startup project assembly version. It works fine.
But I was wondering if it was possible to call add-in from the Pre-build Event ...