Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
375 views

Visual Studio 2008 Post Build event — only run on Rebuild

In Visual Studio 2008 we run a post build event which calls NANT and in turn creates our config files. e.g. if $(SolutionDir) == . GOTO end nant -buildfile:$(SolutionDir)default.build ...
3
votes
2answers
1k views

GAC installation on every build - how to do it reliably

I would like to reliably auto-install my application assemblies in the GAC when I compile my application using Visual Studio. I've setup pre- and post-build events in my web application's build. Pre ...
2
votes
2answers
300 views

How to emulate /p msbuild parameter in Visual Studio build?

That the logical follow-up for the my previous question: "How to check all projects in solution for some criteria?" I was given quite a good answer to use CustomAfterMicrosoftCommonTargets, ...
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
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 ...
0
votes
1answer
260 views

Can I add a custom “task” to the post-build event of multiple Visual Studio projects?

I have a VS2010 solution with four projects in it. I have a semi-complex command line that I want to run which uses Visual Studio build event macros. This command line is currently in the post-build ...
0
votes
2answers
190 views

External tool (esriRegasm.exe) fails during build. Where in my VS project is it executed?

I am trying to compile a sample from ESRI and I get this error Error 1: The command "esriRegasm.exe CommandInheritingBaseCommand.dll" /p:Desktop /s" exited with code -1. So, there must be a ...
0
votes
1answer
112 views

C++ - Custom build events

Is there any way to force Clean action as a Post / Pre build event for single project in Visual Studio? Thank you.
0
votes
2answers
647 views

Prebuild Event only on Build Solution/Project not on F5(Debug)

As the tittle says I need a prebuild command CONDITION that executes an exe on build solution/project and passes when i use F5. I found "$(ConfigurationName)" as a possible solution on some websites ...
0
votes
2answers
444 views

send variables to Visual Studio 2008 build event command line

I would like to send additional parameters to the batch file that I'm running in the "Pre-build event command line" of Visual Studio 2008. I can change directory ("cd") to the current "solution ...