The postbuild-event tag has no wiki summary.
0
votes
1answer
20 views
visual studio post build event run exe with arguments
I have c# command line application that I need to run right after it's compiled so for this purpose we have Post-build event command line in visual studio. I am trying to run it and provide command ...
1
vote
0answers
21 views
Force Visual Studio 2010 to use gacutil.exe from older versions (Post Build event)
I'm developing a simple installer using WiX on which I'm trying to install a .dll and a publisher policy on GAC.
I successfully add the .dll on GAC using the installer. But I want to use PostBuild ...
2
votes
1answer
29 views
jenkins commit after successful build
I am new to jenkins and maybe do not understand the CI-topic yet completly. Considering my research i found that if i do CI, i will always have stable build. Now this somehow confuses me, since i did ...
0
votes
0answers
10 views
Alternative to Pre/Post Build Events in Visual Studio
The Pre/Post Build Events in Visual Studio has bugged me for a few years, but I just haven't got around to research a better alternative. The thing that I want to achieve is pretty much the same as I ...
0
votes
1answer
56 views
Post-Build Events Output Path for Projects and Deployment Project
I am working on a program that needs to have each exe signed before being packaged in the MSI deployment project. I've tried using VS2010's Signing tools ("Sign the Assembly"), but the key file ...
0
votes
1answer
73 views
Post-build event can't be executed
I've converted an old Visual C++ 6.0 project to a new Visual C++ 2010 one. It functions but I have a problem with the post build event which I took from the old project. It registered the target file ...
1
vote
0answers
41 views
Visual Studio post-build: keep console open?
My post-build event works, but in some situations I am quite sure it is showing an error in the console window. However, because the window closes immediately, I'm not able to read any of it.
This is ...
0
votes
1answer
55 views
post-build powershell script
i have next post-build event:
powershell Set-ExecutionPolicy Unrestricted
powershell -file "$(SolutionDir)Obfuscation\_obfuscate.ps1" "$(SolutionDir)" "$(ProjectDir)"
powershell Set-ExecutionPolicy ...
2
votes
1answer
174 views
VS Post build event declare var in bat file and use it later
I'm trying to auto sign project with certificate using signtool.exe in Visual Studio 2010. Here is my simplified post-build script:
if $(ConfigurationName) == Debug (
call ...
2
votes
1answer
65 views
Database Project - Error with INSERT statement
I am trying to seed my database using a Database Project in Visual Studio 2012. As park of my Post Deployment script I have a statement similar to the following:
INSERT INTO SomeTable (SomeTextCol) ...
0
votes
3answers
122 views
Set post build action for all projects in a solution
is there any way of setting and/or changing the post build event/action for all projects in an entire solution? I have some solutions with up to 50 projects in it which all need the same post build ...
1
vote
0answers
80 views
VS 2012 / MSBuild CMD After DB Publish?
I was able to run custom scripts after VS 2010 database projects were deployed. I need to do something similar in Visual Studio 2012, after a database is published, I want to shell to CMD (so I can ...
0
votes
0answers
155 views
Not authorized to access TFS from Visual Studio's post build event command line
I'm trying to checkout some items (using TF utility) in one of my project's post build events. The command is:
tf checkout "D:\Projects\Web\Something\$(TargetFileName)"
However, when I build my ...
1
vote
0answers
80 views
ADB as post-build event in Visual Studio 2010 makes it freeze
I am calling adb as post build event in Visual Studio 2010. Sometimes, it makes Visual Studio to stop responding (e.g. when the device is not connected).
However, when I invoke adb from command line, ...
0
votes
1answer
302 views
Post-build event command for publish (Visual Studio 2010)
I have a project in visual studio 2010.
This project has the following post-build event command lines:
SET TARGET_PROJECT=TestMain
IF NOT EXIST "$(TargetDir)IceBox" (
XCOPY /E /I /Y ...
0
votes
1answer
372 views
Visual Studio 2010 post build event completely ignored
I was looking on stackoverflow for anything similiar to my issue but without results.
It seems that my VS started to completely ignore post-build events.
Post-build events are not triggered in any ...
3
votes
2answers
133 views
Build events in C++ project
I have a post-build event in my C++ Visual Studio 2010 project, which uses command xcopy, but when this xcopy return error code (>0), all build failed too and message "build unsuccessfull", how can i ...
1
vote
1answer
111 views
Running the C++ app from the Eclipse IDE
I am using eclipse IDE. I have here some basic source code including header file. Have been using cygwin as C++ compiler. It compiles my app and it does not produce any error. But I cannot see the ...
0
votes
1answer
101 views
How to use an OR statement in a Post-Build event?
I am trying to use a conditional with an OR in a Post-Build event, but so far, I have had not luck. The following does not work:
if not "$(ConfigurationName)" == "Debug" or not ...
0
votes
1answer
88 views
assistance with post build event command
I am using the following as a post build event:
FOR %%a in ($(ProjectDir)$(OutDir)MyLibrary.*.dll) DO CALL :package %%~na
:package
"$(SolutionDir)\..\..\..\Packages\NuGet.exe" pack ...
0
votes
0answers
59 views
Active X - PostBuildEvent failed
I'm trying to explore ActiveX. I followed this tutorial. It was working fine as per expected until I reached "Package the installer in a .cab file for web deployment" step. After i add
...
1
vote
1answer
515 views
How to checkout-copy-checkin a file in TFS using Post-build event?
I have a Project holding server controls. Whenever I make changes to it I want to be able to Build in Release mode and have the output DLL (and its documentation Xml file) copied to a folder in Team ...
0
votes
1answer
114 views
Is there any macro to get the root directory of the TFS Sourcecontrol in Visual Studio?
Is there any built-in macro to obtain the TFS Sourcecontrol Root directory in Visual Studio?
For example just like $(ProjectDir), I would use $(TFSSourceControlRoot) or something like that?
The ...
1
vote
1answer
117 views
Post build unit testing
I would like to run unit tests in the post build event for Visual Studio 2012 using MVC default testing.
Is there a configuration setting or what is the best way to accomplish this?
2
votes
1answer
1k views
Visual Studio 2012: How to perform a conditional post-build event
How do I perform a conditional post-build event? Specifically, I would like to only execute the post-build event command line for the debug release but not for the release build.
I did not see any ...
0
votes
1answer
260 views
Visual Studio 2012 Signing
I would like to have Visual Studio sign my assemblies.
I got past the point where I can specify my PFX file without any complaints. That was not easy, as I had two of errors. Yes, I had to make ...
1
vote
1answer
290 views
In Visual Studio 2012 (C#) How to Create Custom Macros available in Post Build
I want to add in a Post-build event commandline in my Visual Studio 2012 C# project.
I have a number of projects in my solution and I would like to add to the list of macros available with ...
0
votes
0answers
219 views
Create and Copy files in post-build event
I have several build configurations and depending on the configuration chosen, I need to copy the dll to a created folder. Basically, my executable is located on c:\project and my dll is in ...
1
vote
2answers
80 views
A unit test cannot access settings in another project
In Visual Studio, I have a unit test that calls a method on a class in another project - let's call it MyClass.A().
Inside A(), it accesses a setting in MyClass' project properties.
When I use ...
0
votes
2answers
855 views
Visual Studio 2012 slow build because of pre-build and post-build events
I have troubles with Visual Studio 2012 build, it runs extremely slow. It worked fine some time ago, I have no idea what happened. I enabled diagnostic build output, and saw this:
3>Target ...
0
votes
1answer
112 views
Jenkins - Post Build to a Folder
does jenkins have a post build process such that the build WAR files can be made to be stored particular folder?
0
votes
1answer
283 views
How to script a deployment package for a Class Library with Post-Build events to work on TFS Build
We have a solution with many Class Library projects. These produce a set of DLLs each.
The way we want to deploy these is to install them to the GAC. So we can have a script (BAT file) to run ...
0
votes
0answers
130 views
Visual Studio: Specify output copy location without using post build
Currently I'm working on a project that utilises a plugin system and my solution looks like this:
Core Library (.dll) - this contains the core runtime code I'm working on
Test Library (.dll) - this ...
4
votes
1answer
258 views
Delphi 2007 post-build event, copy exe into specific directory?
In Delphi 2007 how can I copy the newly-built exe into a specific directory using the post-build event?
Any link to a list of build event commands would be much appreciated.
1
vote
3answers
342 views
How to get the dynamic path of solution directory in post-build event of Visual Studio
I have seven code library project in my solution and I has 3 different type of websites which are using same code library project from VSS.
Now I want to put post build script in one of my reference ...
2
votes
2answers
603 views
How to execute a PowerShell script only before a web deploy Publish task in VS 2012?
Currently I have a post-build event configured in my web project using Visual Studio 2012 like this:
This basically calls a PowerShell script to add a copyright notice to every .cs file.
What I'd ...
1
vote
0answers
137 views
Run failed tests from TFS post build event
We are using TFS/VS 2010 to run Selenium tests which are scheduled in the TFS controller. After the build and tests are finished I would like to run the failed tests from that build.
Currently I am ...
2
votes
1answer
2k views
Visual Studio Post-Build events calling batch files with arguments that have spaces
Anybody know how to do this?
I have a .bat script that I'd like to be able to use both from the command line as well as a post-build script in Visual Studio.
The script takes arguments, some of ...
2
votes
1answer
645 views
Powershell script in Visual Studio 2010 Post-Build Step
I have a powershell script that works wonderfully from the powershell shell and from a cmd window, and now I am trying to launch it from a post-build step in Visual Studio.
After several different ...
0
votes
0answers
174 views
error code '1' 'Unspecified error' while runing .sed file in 'PostBuildEvent'
I am Combining Setup MSI and EXE into a single package with IExpress using iExpress it is working. But now i want to automate it with the postbuilt event in visual studio. i reffered to the Combining ...
0
votes
0answers
30 views
Different Postbuilds for different Configuration [duplicate]
Possible Duplicate:
How to run Visual Studio post-build events for debug build only
I want to execute a postbuild command when compiling my project as Release. If Debug is set, these ...
-1
votes
1answer
1k views
Visual Studio Pre/Post Build Event - Copy files to Directory in setup project
i have one folder in setup project called "SSRS_Repor". now i want that when i will create setup for my project then i want to copy all files from a folder exist in my project called "report" to ...
0
votes
0answers
37 views
Adding image to the folder where windows service is installed
I am working on windows service. When I install the service, the service gets installed to a path "C:\Program Files (x86)\Service\ServiceSetup".Now I need to add an image to this path when the service ...
0
votes
2answers
785 views
Visual Studio 2010 vs. MSBuild Post-Build Events
I have a solution with a number of projects.
The main project's assembly's version is inspected in a post-build event and the release notes associated with that version are extracted from Trac RSS ...
0
votes
0answers
21 views
How to abort or fail a Visual Studio build if a postbuild event runs a program that returns an error
Can the build of a Visual Studio solution with many projects be aborted if a postbuild event for one project return some error code back to Visual Studio? How?
0
votes
2answers
93 views
Changing the OutputPath after build
I have a scenario where I have to change the OutputPath in .csproj file after the build.
I'd like to know if there is any way to do this in post build events.
4
votes
2answers
2k views
VS2012 Post-build event not firing
I have a web project that fires a post-build event "On successful build" to perform some cleanup/migration activities (command script).
In VS2012, post-build on success ONLY fires when there is a ...
1
vote
2answers
2k views
Post build SET command and %variable% error
I am a batch newbie and I might have made a mistake. But I have the following post-build event:
IF $(ConfigurationName) == Release (
SET RELEASEPATH = "C:\Users\Synercoder\Documents\Visual Studio ...
2
votes
1answer
1k views
“Error MSB3073” in Visual Studio 2010 - post-build command dosen't handle line breaks?
I have a post build command in Visual Studio 2010:
setlocal
cd D:\1.5\BINZ
if %errorlevel% neq 0 goto :cmEnd
D:
if %errorlevel% neq 0 goto :cmEnd
"C:\Program Files\CMake 2.8\bin\cpack.exe" -C ...
0
votes
0answers
209 views
Differing Command Line vs Post Build Event behavior on pdb2mdb.exe
My apologies as I'm a newbee poster here.
I've successfully called MonoD's pdb2mdb.exe from the post build event with the code below. I've also successfully reached pdb2mdb.exe via a .bat file ...



