Tagged Questions
The pre-buildevent tag has no wiki summary.
8
votes
3answers
2k views
Visual Studio: Solution-wide pre-build event?
I have a solution in Visual Studio which contains several projects. I'd like to run a command at the very beginning of every build - no matter which projects are involved and whether or not they are ...
6
votes
4answers
1k views
Delphi pre-build event not executing BEFORE compile
I'm busy automating our builds to include the svn revision number. We're using Delphi 2010. I added a pre-build event calling a batch file that injects the the svn revision number (read from the ...
5
votes
2answers
904 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 ...
5
votes
4answers
6k views
How to delete files in Visual Studio Pre-build event command line
I am trying to delete files in my $(TargetDir) within visual studio before building a project.
How do you have to format command line to get around this problem I am getting below?
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
208 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
145 views
Is there a way to modify Visual Studio 2008 or 2010 project pre-build events from within your code in C#?
Is there a way to modify Visual Studio 2008 or 2010 project pre-build events from within your code in C#? Does C# have such preprocessor directives that would allow one to configure what gets run ...
2
votes
1answer
491 views
How to modify source files in Pre-Build… without modifying source files?
so I'm using Visual Studio 2005 and for my current project I'm building a C# Add-In to handle the weaving of aspects for AspectC++. It's simple enough to gather the aspect and source files and feed ...
1
vote
1answer
200 views
Trying to use MSBuild from command line for WP7 solution
I'm attempting to build a WP7 solution file form the command line using MSBuild (the solution file builds perfectly fine inside VS). So far I have the following:
msbuild Test.WP7.sln /t:rebuild ...
1
vote
3answers
172 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
2answers
475 views
Visual studio 2010 pre-build event to compile & deploy a solution
i need to set a pre-build event in visual studio that will build and deploy a solution. the separate solution is in a directory below the current directory of the solution that i am working in. does ...
1
vote
1answer
61 views
Can you have or mimic within Visual Studio 2008 a Solution Level Pre and Post Build Events?
I would like to know if there is anyway to get the ability to have or at least mimic Pre and Post build events at the Solution level not just at the project level within Visual Studio 2008?
Therefor ...
1
vote
1answer
421 views
How to detect debug/release in visual studio pre/post-build command line?
How can I detect Debug or Release mode from command line pre-build or post-build window?
I tested the code below, it works in code text window.
Can it be convert to command line code?
If can, how to ...
1
vote
1answer
90 views
Is there a better way to run a c++ makefile from a c# project?
I have a project in c# which uses bindings to use some c++ code. The c++ code consists of multiple DLL's which are compiled using a makefile. Currently I'm trying to run the makefile using a pre build ...
0
votes
0answers
14 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
1answer
29 views
WebBrowserControl + JS minification: Manipulate resources-properties with js code for minification puproses in Visual Studio's pre-build events
Background: Got a C# project which involves a block of javascript that gets programmatically injected in the web pages displayed by a webbrowser control. However, it is desirable to minify this block ...
0
votes
0answers
25 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
3answers
58 views
c# Generate c# code before compilation/buil (Like maven plugin in java)
I have a projet in c# .net.
I need to hook the "pre build" event so I can run a c# class that will generate other c# class to the same project.
I know that in java you can generate source code using ...
0
votes
0answers
75 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
93 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
0answers
16 views
File version in explorer is not equal to the version in AssemblyInfo
I am using a self written tool to update the version information in the assemblyinfo.cs. The tool works completely fine, the version information in the assemblyinfo.cs are updated according to my ...
0
votes
1answer
189 views
Visual studio pre build event
Im running the following command in my pre build event
(get-content "$(SolutionDir)woop.txt") -replace 'HELLO','GOODBYE' | set-content "$(SolutionDir)woop.txt"
however im getting the following ...
0
votes
1answer
164 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
384 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
152 views
Visual Studio 2010 hangs when running Selenium as Pre-Build event
I have created a bat file which calls selenium server called run-selenium-server.bat which has:
java -jar D:\temp\selenium-server\selenium-server.jar
Also I have added in my project properties ...
0
votes
2answers
702 views
Event Build pre & post to stop and restart windows service
I've been experimenting with using build events to start and stop Windows service that are being built in my project. However for the pre & post builds fail with an error level 255. I've tried ...
0
votes
1answer
296 views
Building SharpKeeper (ZooKeeper Client for .NET)
I've been looking for .NET version of the ZooKeeper client and I found one.
https://github.com/ewhauser/zookeeper/tree/trunk/src/dotnet/SharpKeeper/
I was so thrilled and downloaded the source files ...
0
votes
2answers
149 views
Search and replace in *.aspx,*.ascx files when publishing a Webapplication
I'm attempting to replace a pattern in all my .aspx and .ascx file when I Publish my Webapplication.
When I am running the application locally, I don't care about the replace. But as soon as I need ...
0
votes
1answer
71 views
Validate an XML file as a build event
I was wondering if there was a way to validate XML files as part of a pre-build event, so that I can go back and fix the problem before the app starts up.
I'm aware of (and use) code to validate XML ...
0
votes
1answer
310 views
vs.net multi pre-build commands
Hi all i have an external project and i wnat to build it in the main project fo that
i'm using pre-build commands.I want to use multi commands for copying aspx pages and
ascx usercontrols to ...