Is there a Visual Studio Compile Option
-
Hi, Is there a visual studion option which would help me to execute a file, somewhere in my drive, after a successful compilation. I need this because, i want to copy my executable/dll from the debug folder a different place for execution, write now i'm doing this with a batch file, any other technique to automate the process which could also, take care whether the executable already in memory, which means the file copy could not be done ..... Thanks in advance. Cheers Kannan
-
Hi, Is there a visual studion option which would help me to execute a file, somewhere in my drive, after a successful compilation. I need this because, i want to copy my executable/dll from the debug folder a different place for execution, write now i'm doing this with a batch file, any other technique to automate the process which could also, take care whether the executable already in memory, which means the file copy could not be done ..... Thanks in advance. Cheers Kannan
Hi Kannan, Look in the "Project settings" for the "Post-build step" tab. Here you can add a list of commands you want to execute after a successful build. I'm not sure, I used it only one time to copy a dll in the project directory. You may also use some special strings, see the docs. Cheers, Paolo.
-
Hi, Is there a visual studion option which would help me to execute a file, somewhere in my drive, after a successful compilation. I need this because, i want to copy my executable/dll from the debug folder a different place for execution, write now i'm doing this with a batch file, any other technique to automate the process which could also, take care whether the executable already in memory, which means the file copy could not be done ..... Thanks in advance. Cheers Kannan