Tagged Questions

5
votes
1answer
330 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 "[...]" ...
2
votes
1answer
357 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 ...
0
votes
1answer
78 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
2answers
229 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
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
671 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
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 ...