I am planning to integrate NArrange in my visual studio solution,i want to run this exe whenever a file is saved,Is there a way to receive event when file gets saved? I have heard about macro but do not have much information on that.
A:
I don't know that you can get at a post save event for a file, but you might be able to add a post build event to the project(s) you care about. Just right click the project, in the solution, click properties, and then post build event. Whatever you add in here will run after a successful build of your project. You can get more information about pre and post build events here
Matt Dearing
2010-03-05 05:25:38
That was the very first thing which i had considered,but its not good ,Because if on a file few breakpoints are added they get shifted which makes debugging an annoying process.So ruled out
Ravisha
2010-03-05 06:22:39
It seems like you would need to run this in a post build event. I would think if you just saved a file that wouldn't compile (because of some compile errors) NArrange would not be able to re-arrange the code.
Matt Dearing
2010-03-05 13:38:13
@mdearing06 ,as already mentioned these things are tried and have not been suitable for my requirement.I specifically need it to be done on save.
Ravisha
2010-03-08 04:43:18