I want to run a target in csproj file using post build events from the visual studio properties window (not from cmd promt).

Is that possible? Please explains thks

link|improve this question

61% accept rate
feedback

1 Answer

You can define a target called AfterBuild in your csproj file and it will be called near the end of the build process. There is also a BeforeBuild target you can add that gets called just before the core build actions.

link|improve this answer
yes. That is a valid point. But I like to call it from the post build events from visual studio properties. Please let me know if there is a way..thks – Praneeth Jan 12 '11 at 17:28
1  
The msbuild scripts do an Exec task on the text in the post build event, so you could call MSBuild to execute some project file and run a target that way - if you MUST do it with post build events. The "visual studio properties" are MSBuild properties so you can access them in the AfterBuild target. – Brian Walker Jan 12 '11 at 17:51
Can you please show me how to write that(syntax) and the second way I dont see any AfterBuild target in properties->BuildEvents. I can only see Post-build event command line. – Praneeth Jan 12 '11 at 19:56
There is no user interface in Visual Studio to do the AfterBuild event. You would edit the csproj directly as a text file. Add a target with a name of AfterBuild and then add the MSBuild targets/tasks you want to call. – Brian Walker Jan 12 '11 at 20:38
1  
Here is a link that describes some of the integration points available in the csproj file: msdn.microsoft.com/en-us/library/ms366724.aspx – Brian Walker Jan 12 '11 at 20:40
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.