I asked yesterday about getting AfterBuild
working and was able to get that working by placing it at the very bottom of the Project
section: MSBuild AfterBuild Step
I have tried the exact same thing with a different project. This is my BeforeBuild
code:
<Target Name="BeforeBuild">
<Message Text="###HI###" Importance="High" />
</Target>
I don't have another before Target Name="BeforeBuild"
in the project and I have this placed at the very bottom of the Project
section. The .vcxproj is parsing/loading into Visual Studio 2010 without issue. I have my "MSBuild project build output/log verbocity" set to "Normal".
Is there something else I haven't thought of that would cause this not to run?