Tagged Questions
The prebuild tag has no wiki summary.
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 ...
6
votes
2answers
2k 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 ...
5
votes
2answers
696 views
MS-Build BeforeBuild not firing
I'm customising a .csproj project to run some custom tasks before the main build. However, I can't get the tasks to execute at all.
I uncommented the <Target Name="BeforeBuild" /> element in ...
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 ...
3
votes
5answers
5k 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 ...
2
votes
1answer
194 views
How to make a C macro pre-build pre-processor?
Let's say I have a string that I would like to obfuscate in my code. (This example is just for learning.)
My plan is to wrap the string literal with a macro, e.g.
#define MY_STRING "lol"
const char ...
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
1answer
76 views
Can i set dynamically the name of a shortcut while deploying with the VS Setup Deployment Project?
i would like to publish my application with a name (and desktop shortcut) based on a config file.
So can i dynamically set the name of a shortcut while deploying with the VS Setup Deployment Project?
...
2
votes
1answer
2k 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 ...
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
107 views
How can I compile auto-generated C files in pre-build?
I have an Eclipse project that I need to auto-generate some files before compiling it. I do not want to put this auto-generated files in my repository, so each time I compile the projetct I perform a ...
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
210 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 ...
1
vote
1answer
175 views
best way to handle prebuild and post build events while making a setup
hi i have many prebuild and postbuild events in different projects.
i want to write these events in a single batch file and then call this script in the main
project please tell me this is the ...
1
vote
5answers
2k 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
1answer
67 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 ...
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
0answers
76 views
Copying a DLL into the VS 2010 PublicAssemblies directory gives Access Denied error
I'm trying to copy a DLL into the VS2010 PublicAssemblies directory during a pre-build event. I'm using the following command:
copy /Y "$(SolutionDir)Lib\Microsoft.Cci.dll" ...
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
388 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
0answers
375 views
Sharing violation during pre-build causes MSB3073
Has anyone had a problem with MSVS2010 during building c# project using pre-build step? I have two projects in a solution. One has a pre-build step which uses xcopy to copy some files. The former is a ...
0
votes
1answer
375 views
Visual Studio 2010 precompile or prebuild actions
I'm looking for ability to make some replacements in my code files in prebuild or precompile phase (user transparent). I was thinking about Visual Studio extension, but haven't found solution yet. ...
0
votes
1answer
843 views
How to add pre-build step in qmake/qtcreator?
I want the compiled application to have the commit number, source files checksums and other things to be available during the compilation.
In plain Makefiles I do like this:
prog: VERSION source.c
...
0
votes
3answers
600 views
CCNet - prebuild task cmd.exe?
Im using a command line prebuild task in the ccnet.config file to delete the contents of thw working directory before i do a clean build.
<prebuild>
<exec>
...
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 ------
...
0
votes
2answers
334 views
Pre -build events on VS 2008 did not executed
I'm tring to run build of C# solution on vs2008 and discovered that pre-build events for projects containing in the solution were not executed. What can be reason of such behavior ?