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
|
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
| |||
|
feedback
|
|
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. | |||||||||||||||
feedback
|