Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
21k views

Post Build exited with code 1

I have project with a post build event: copy $(ProjectDir)DbVerse\Lunaverse.DbVerse.*.exe $(TargetDir) I works fine every time on my machine. I have a new developer who always gets the "exited ...
6
votes
2answers
192 views

Minify JavaScript and Attach Version Number using VS2010

I have a few goals I'd like to achieve but I'm unsure of how to get there: Create a single-click deployment for my web project that includes a minified javascript file Version my minified JavaScript ...
5
votes
1answer
334 views

Visual Studio Post-build event: for %f in (set) command

This command in the Visual Studio 2010 Post-build event for %f in ("$(ProjectDir)$(OutDir)*.dll") do echo %f (echo will be replaced with some other tool) gives me the error The command "[...]" ...
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
591 views

MSBuild Post-Build

I've got an MSBuild script that is just about doing everything that I need it to do apart from my post-build step (see a previous question that I asked: MSBuild conditional Exec?). What I'm looking ...
2
votes
1answer
359 views

Spaces and backslashes in Visual Studio build events

I have an application that is supposed to aid my project in terms of pre- and post-build event handling. I'm using ndesk.options for command line argument parsing. Which gave me weird results when my ...
1
vote
1answer
461 views

Jenkins svn commit post-build

I'm trying to make a post-build commit in Jenkins CI when it's succeeded. Is there a way to make this? My problem is that when i build it generates some dll's in the workspace that i need to commit ...
1
vote
1answer
117 views

Windows batch file to deploy all the dlls in a folder to GAC

I'm working on an ASP.NET project where I've a bunch of dlls created in a folder. I need to write a cmd or bat file to take all the dlls in that folder and GACUTIL it. So how can loop all the dlls in ...
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
2answers
622 views

“Attach to Process” as a post-build event

I have an application that runs hosted under the "w3wp.exe" process. While debugging, I often find myself following these steps: 1 - Make some change 2 - Build the project 3 - Attach to "w3wp.exe" ...
1
vote
1answer
444 views

How can I pass a Visual Studio project's assembly version to another project for use in a post-build event?

I have a solution with 2 projects: My Application 1.2.54 (C# WinForms) My Application Setup 1.0.0.0 (WiX Setup) I would like to add a post-build event to the WiX Setup project to run a batch file ...
1
vote
2answers
97 views

How can I invoke the post-build script without a build!

does anyone know how I can have the post build action execute without doing a build? There are loads of xcopy commands and it would be nice to use them on their own... but you cannot put them into a ...
1
vote
1answer
76 views

Post build testing with omake

Is there any way to add a post build command to an omakefile? I want it to automatically run unit tests everytime a build is successful, but am not sure of the best way to do this.
0
votes
1answer
27 views

How could I use references in post build task plugin of hudson

I have recognized that post build task plugin of hudson will provide an excellent service for development. The plugin allows us use java regex in log text, and the demo shows that we could pass the ...
0
votes
1answer
86 views

“If” syntax for post-build macros in VS 2010

I'm trying to to add a post-build macro that would conditionally copy some files after the build if the configuration is not "Debug". I'm trying the following: if ('$(ConfigurationName)' <> ...
0
votes
1answer
103 views

What is the right post build Ant target in android generated project file?

I am using Android 2.3 generated build.xml to compile my Android app. I am trying to integrate the ant build with master build process. The master build process likes to copy all the generated apks to ...
0
votes
2answers
63 views

Executing POST_BUILD commands based upon file dependencies

I have a DLL POST_BUILD step that copies the DLL to directory A. Suppose I then delete the file from directory A. I then hit F5 inside Visual Studio and the file is not copied. What are my options ...
0
votes
1answer
233 views

How to run parametrized job after another (without params)

I have a job in Jenkins which has 2 params. I want to run another plan, which has no params and from that plan, launch the existing plan as many times as required. The new plan needs to be scheduled ...
0
votes
2answers
231 views

How can I retrieve major/minor/build/revision number on build events

Hy there! I'm using this piece of code, to copy some files on post-build-event: <PropertyGroup> <DemoPath1>..\demoPath1</DemoPath1> </PropertyGroup> <Target ...
0
votes
2answers
247 views

Post-Builds in TFS Team Build best practice

i have a question about Post-Builds. We have a Post-Build in project settings. This Post-Build task compress JavaScript because of Web Application performance. Assembly path is assigned by variable ...
0
votes
1answer
403 views

How to sign a binary as part of post build step using sn.exe from Windows SDK?

I am a totally unfamiliar in this C# Visual Studio programming environment but I am required to finish a task. I am sorry if my question seems silly. But I really could not understand what other ...
0
votes
2answers
439 views

Post build script returning errorlevel 255

I currently have the following script as post build on a project: if $(ConfigurationName) == "Debug (x64)" || $(ConfigurationName) == "Release (x64)" (goto :x64) if $(ConfigurationName) == "Debug" || ...
0
votes
1answer
74 views

Automated Visual Studio Source Changes on Build (Update DBML etc.)

Every time I rebuild by DBML, I have to adjust settings for auto generated value etc. for individual fields. Is there a built-in tool which I could use to automate my changes in the DBML when I ...
0
votes
2answers
677 views

How to exclude Post Build Jobs using MSBuild & Cruise Control

We have a Library Project that we use for all our central reused code called "CentralLibs.dll" This library gets GAC'd on all our servers during deployment so to make things handier for the DEVs when ...
0
votes
1answer
755 views

Questions about .NET and Xenocode Postbuild

Referring to this topic (and accepted answer). Isn't .NET Windows only (except for emulators)? How will using Xenocode Postbuild affect the portability of the application? Will compiling my ...
0
votes
1answer
1k views

Post Build Events Customization In Visual Studio

Hi Is there a way to customize the post build event macros, I would like to move the new assembly to a sub folder in the same directory named by the version of the assembly i.e. copy ...