Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
4answers
26k views

Visual Studio Post Build Event - Copy to Relative Directory Location

On a successful build, I wish to copy the contents of the output directory to a different location under the same "base" folder. This parent folder is a relative part and can vary based on Source ...
9
votes
3answers
2k views

Visual Studio: Run C++ project Post-Build Event even if project is up-to-date

In Visual Studio (2008) is it possible to force the Post-Build Event for a C++ project to run even if the project is up-to-date? Specifically, I have a project which builds a COM in-process server ...
5
votes
2answers
431 views

Visual studio 2010 - Per Developer/machine/environment Web.Config settings

Wanted to pick the brains of those MS Build/ VS Post build exponents here. I would like to have my web.config entries customizable per user/machine/environment. I could have my ...
4
votes
4answers
282 views

How can you access the Visual Studio solution level platform from a C# project's build event?

We have a large VS 2010 solution that is mostly C# code but there are a few native DLLs that various C# projects depend upon (including our unit testing DLL). We're in the processing of trying to ...
4
votes
2answers
120 views

Can Visual Studio automatically adjust the name of other file as it does with app.config?

When adding an Application Configuration file to a .Net project in Visual Studio it will be named app.config and will be renamed (on build) to ApplicationName.config. I have a solution with about ...
4
votes
1answer
243 views

Visual Studio: Running jsmin as a post-build event

I'm trying to add jsmin.exe as a post-build event to my VS 2010 project but I get "error code 9009" when I try to build my project. I've tested at the command prompt and found that if I navigate to ...
4
votes
1answer
631 views

Help using signtool.exe in Delphi project post-build events

This is a very simple question. What should I write in Delphi post build events to execute a coomand line tool? I wrote this: c:\BinPath\signtool.exe sign /f c:\BinPath\Mypfxfile.pfx /p MyPassword ...
3
votes
1answer
445 views

VS2010: Creating Post-Build Events (C#)

I want to add post-build events to a project, elegantly. I wrote them in batch first, but there's a little logic in them, so I thought it might be best to write them in a more readable language. The ...
3
votes
3answers
2k views

TFS 2010 Build Automation and post-build event

In the project I've inherited, the original developer used a number of post-build events in his Visual Studio projects to copy around DLL's and stuff when building inside VS. This is causing some ...
3
votes
2answers
96 views

Post-build commits: good or bad?

Is it a good policy to automate source control commits following successful builds? Edit: I'm asking because I want more frequent, incremental commits between versions that make it easier to find ...
3
votes
1answer
693 views

Visual Studio - Post Build Event - Throwing Errors

I've got a nice power-shell driven post-build script that does some magic mumbo-jumbo for pulling all our plugins into the correct location after they're compiled and sorting out thier dependencies ...
3
votes
2answers
795 views

GWT Post build command in Eclipse

I am starting getting used to Eclipse, but I have much more experience with Visual Studio. In Visual Studio it is possible to run auto commands after the build has finished. Now I am creating a GWT ...
3
votes
1answer
2k views

CMake Post Build Step

I'm trying to setup a post-build command for CMake, which I have done using the ADD_CUSTOM_COMMAND directive as stated in the CMake documentation. What I'd like to do though, is only have the ...
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 ...
3
votes
4answers
2k views

Adding a post-build event to a web site in Visual Studio 2008

I am using a "web site" in visual studio 2008, and i would like to add a post-build event which would append the build time to the web.config file. Is it possible?
2
votes
1answer
41 views

SQLite, copy platform specific dlls to bin folder

I need to get the respective SQLite x86/x64 dlls into the bin folder according to if I build to x86, x64 or Any CPU. Where/how would I specify this in an easy manner? Assume I have the dlls in /x86/ ...
2
votes
1answer
38 views

With an Azure project, when managing multiple service configurations, where are the current configuration choice saved

I'm wondering about this because i'd like to find a way to create a post-build event that is different whether I'm trying to compile and run in the emulator or wheter I'm compiling and publishing to ...
2
votes
1answer
191 views

How to get version number in post-build event

I want to use post-build event to automatically create a nuget package and then copy it to a shared folder on our network, something like this (the version number 1.0.0.0. is specified inside the ...
2
votes
5answers
3k views

XCOPY switch to create specified directory if it doesn't exist?

I am using XCOPY in a post-build event to copy compiled DLLs from their output folders to the main app's output folder. The DLLs are being copied to a "Modules" subfolder in the main app output ...
2
votes
1answer
622 views

Updating local nuget package on post-build event

I have my local nuget library repository separately both for my personal and work releted class libraries. I have created some of the nuget packages for the libraries which are no longer in ...
2
votes
2answers
3k views

Visual Studio Post Build Event MT.exe command fails with code 9009

Hi I am running following command from my post build event: C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin\mt.exe -manifest "$(ProjectDir)$(TargetName).exe.manifest" ...
2
votes
3answers
289 views

Are there any better ways to copy a native dll to the bin folder?

I have C# wrapper code that calls functions from a native (C++) dll. Currently, I can add a reference to the C# dll and have set the 'Copy Local' option to true. However the native dll, which is a ...
2
votes
1answer
257 views

How to add a build time to a file archive as a post-build macro?

I want to pack the project into a zip-file and have the build date time (or the current date time) as part of the zip-filename. $(TargetDir)\7za.exe a release.zip * So it would be nice to ...
2
votes
2answers
515 views

Is there any standard for post build events within Visual Studio?

I am working on a VS solution that utilizes the post-build events to copy files into a deployment project that packages the files. Does anyone know if there is any best practice in how to move files ...
2
votes
1answer
318 views

Visual studio postbuild - changing to the solution drive

In Visual Studio postbuild, I need to run a batch file. The solution is potentially on a different drive to that which Visual Studio is running from. In postbuild, how do I determine the drive letter ...
2
votes
1answer
178 views

How to create an asynchronous build event in Visual Studio (2008)?

I am trying to do a poor man integration with xUnit.Net from inside Visual Studio as a post build event. What I want is when I press Shift+F6 (Build the test project), after a successful build it ...
2
votes
2answers
246 views

Can a post-build step take me to a specific line of code?

I just wrote a little program which will be executed as a post-build step when I compile certain projects. This program returns 0 for success, or some number for failure. In case of failure, Visual ...
2
votes
3answers
2k views

VS .Net: Post build events for “Primary Output from <myProject>” in installer project

I'm using the following post build actions in a project, to merge a lib into my application: IF $(ConfigurationName) == Debug GOTO end cp $(TargetPath) $(TargetDir)app_unmerged.exe del $(TargetPath) ...
2
votes
5answers
10k views

VS Post Build Event

I would like to implement a post build event that performs the following actions A relative path copy of the DLL output (1 file, not all the debug jazz) A register the output DLL to GAC How is ...
1
vote
2answers
69 views

Use external EXE as startup project

I have a solution which contains a few projects and an external exe. When I build, I want to copy the exe to my build folder, as well as build the projects and copy my dlls to the build folder. Is ...
1
vote
1answer
86 views

Copy Failed during post-build process

I am writing an ASP.NET web application using Visual Studio 2008. The project is mostly unchanged from the default empty project that Visual Studio provides, except for: In ...
1
vote
2answers
53 views

Post-build line into makefile

I would like several files to be copied from "folderA" to "folderB" automatically after each "make". Does anyone know how to add a post-build line into the makefile?
1
vote
1answer
371 views

Post-build event copy not working

I have a post-build event to copy a .dll from one project to another on successful build using the following command: copy $(TargetPath) ....\MainProject\bin This works fine on my local machine, but ...
1
vote
3answers
94 views

How to unzip from PostBuildScript in Visual Studio?

I'm trying to unzip a File in my PostBuild Event from Visual Studio, but I get an error (Command 'unzip' ended with Code 50) evertime the command gets executed. unzip -o "SourceFile.zip" -d ...
1
vote
2answers
530 views

Running batch file on post-build event : Error 46 The command … exited with code 9009

I am trying to run a batch file on post-build event but I am failing. the following is my text which I have put my post-build event; E:\Documents\Tools\minify-css-files.bat And I am getting this; ...
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
444 views

Get qmake to execute shell script after build finished on Mac

After my release build is finished I would like to run a script. I found this question How to execute shell command after compile finished from .pro in QT? but the answer doesn't work for me. I ...
1
vote
1answer
615 views

Copy built assemblies (including PDB, .config and XML comment files) to folder post build

Is there a generic way I can get a post-build event to copy the built assembly, and any .config and any .xml comments files to a folder (usually solution relative) without having to write a post-build ...
1
vote
1answer
343 views

Using Resource Hacker for changing the icon after the build

This question is written in several places (like here, and here). In the second questino there is a comment that says to use ResHacker.exe -addoverwrite "Project.exe", "Project.exe", ...
1
vote
2answers
1k views

Execute exe file or bat file after compile with Visual Studio 2010

I would execute an exe file or a bat file after that the compilation of a C++ program ends. How could I do this? EDIT 1 This is my actual command line: start "C:\mypath\myexe.exe myarguments"
1
vote
1answer
176 views

Add warnings to project error list from the output of a post build tool

I have a command-line tool that I run as a post-build event. The tool does some analysis on the code in my project and generates a text file as its output. I'd like to take the text file generated ...
1
vote
1answer
263 views

Automatically specifing a default post-build event in VS 2010

Is there a way in Visual Studio 2010 to automatically specify a post build event command? Right now I have to keep putting in the same command for every new project I create. Is there a way to have ...
1
vote
0answers
171 views

Post Build event on Published Website Code

Is there any way to run a build event that is post publish, I want to compress the JS and CSS that is published to inetpub post build. I don't want to compress the files in my solution at all. I ...
1
vote
2answers
972 views

Build FAILED for Notepad++ with message PostBuildEvent: The system cannot find the file specified

I get a build failure due to a post build event failure when building Notepad++ in VS 2010. Here's the message from Output window: PostBuildEvent: The system cannot find the file specified. ...
1
vote
1answer
760 views

Run Dotfuscator as a post build event

I'm using Dotfuscator in Visual Studio 2010. I want to run Dotfuscator as a post build event so every time I build a project Dotfuscator will run on the output DLL using a configuration I've created ...
1
vote
3answers
590 views

How to execute a program on PostBuild event in parallel?

I managed to set the compiler to execute another program when the project is built/ran with the following directive in project options: call program.exe param1 param2 The problem is that the ...
1
vote
3answers
719 views

Using compiler constants in build events

Is there anyway to use compiler constants in Build Events in Visual Studio - VB.NET? (especially in Post-Build events) Scenario If TEST_EDITION=TRUE is defined I want to run an executable during the ...
1
vote
3answers
816 views

Create Shortcuts via DOS command

I would like to know if there is a DOS-Command in WinXP to create shortcuts (to an executable). I'm looking for DOS-Command if it is available, not a batch or script file (I'm only finding batch ...
0
votes
0answers
12 views

VS2010 Get server binding info (in post build)

We recently migrated to VS2010 & TFS2010 and I'm having an issue with a code generator. For the moment we only use local builds as there are issues with installing our platform on the build ...
0
votes
2answers
106 views

how to have Visual Studio 2010 nunit post-build event succeed, always

I have a post build event that runs nunit-console to execute some tests. some of those tests fail, which in turn causes the post build event to fail (exit code equals failure count). I would like the ...

1 2