Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
570 views

How to Improve this Visual Studio Post-Build Event that is using ajaxmin.exe

I am currently using Visual Studio 2010 post-build event to minify my JavaScript files. The problem is every time I add a new JavaScript file I have to update the post build event. What I want to do ...
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 ...
1
vote
1answer
84 views

Visual Studio post-build copy failing (but works on the command line)

In VS 2010, I have a post-build event copying project assemblies into a common .dll folder. The .dll folder is mapped by a virtual drive (R:). On running, I get the following: The command "copy /y ...
1
vote
1answer
112 views

How to trigger VS post-build events without rebuilding

I have a bunch of VS 2005 C++ projects, which build a number of dlls and executables, which are a small part of a large interdependent file hierarchy. In order to debug the files, I copy the built ...
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
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
2answers
231 views

How can I write a registry key from VS post build event?

One of the projects I work on need to read a registry key in order to determine some value. Usually the value will be written during installation. Because I want to run the project locally as well ...
1
vote
5answers
4k views

Can I copy multiple named files on the Windows command line using a single “copy” command?

I'd like to copy several known files to another directory as a part of a post-build event, but don't want to have lines and lines of "copy [file] [destination] [switches]" in my build event. If ...
0
votes
1answer
243 views

How to use xcopy only to copy files if they are newer?

In Visual Studio 2008, I have many web applications in a Solution. All have the same post build command: xcopy "$(TargetDir)*.dll" "D:\Project\bin" /i /d /y I was wandering that could be ...
0
votes
1answer
457 views

Post Build event that puts all extra .dlls in bin directory using probing

I have WPF assembly with a bunch of other dlls in my project I want to move everything except the main assembly and the app.config from the build directory to a subdirectory called bin this is easy ...
0
votes
1answer
74 views

How to check for an existing executable before running it in a post-build event in VS2008?

I'm trying to use SubWCRev to get the current revision number of our SVN repository and put it in a file so I can show it in the UI. As I'm working with a Web App, I use the following post build ...
0
votes
1answer
434 views

Change IIS 5 virtual directory in Post-Build Event in Visual Studio

I'm running into an issue where I need to be able to change the target directory path that my IIS 5.0 virtual directory is pointing to from within a Post-Build block in Visual Studio 2008. If you're ...