Click here to Skip to main content
15,885,126 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I want to write Post-build event in visual studio 2012 and I don't know how to write Macros to execute post built events.
My simple requirement is, I just want to run an .exe file which is placed in a folder after successful built operation.

So please guide me how to achieve this.
Thanks in advance.
Posted
Updated 28-Mar-13 23:35pm
v2

1 solution

http://msdn.microsoft.com/en-us/library/42x5kfw4%28v=vs.80%29.aspx[^] This link should help.

You may not even need a macro. You might be able to just do:
call C:\MyFile.bat

which is an example in the article.
 
Share this answer
 
Comments
vikas.pawar143 29-Mar-13 9:55am    
I want to publish data to database which has execute an EXE file of another project which will take care of infrastructure required for application.

I have tried

Set shell = CreateObject("WScript.Shell")
shell.Run "C:\abc.exe"
But i am getting error "Command" exited with code 9009.
and also call c:\abc.exe, but i am getting an error, Publish cannot begin untill project builds successfully.
ZurdoDev 29-Mar-13 9:58am    
So, your code is not building?
vikas.pawar143 29-Mar-13 10:00am    
when i am adding that script (Macro), its not building.
ZurdoDev 29-Mar-13 10:06am    
It sounds like you also have a Publish project in your solution that it appears to be conflicting with.
vikas.pawar143 29-Mar-13 10:27am    
yes, i want to run macro from a dataproject.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900