How do I then specify additional project-specific Post-Build Events? The usual “Inherit from parent or project defaults” is missing, and I would rather not have to manually add bar to every single project as it makes it hard to maintain.
msbuild build events can inherit, but not add in addition to inherited build events (so projects in Visual Studio, Delphi and others cannot do that either)
Posted by jpluimers on 2021/05/26
Bummer: I tried to inherit the build events from a base configuration, then add some extra steps for some of the inheriting configurations.
Those configurations just executed the extra steps, not the inherited steps.
This affects Visual Studio, Delphi and any other tool based on msbuild, as this is an ms-build thing:
- [WayBack] Inherit Post-Build-Event in Visual Studio? – Stack Overflow
- [WayBack] Cannot inherit Post-Build Event using vsprops property sheets.
- [WayBack] MSBuild Reference – Visual Studio 2015 | Microsoft Docs
- [WayBack] Exec Task – Visual Studio 2015 | Microsoft Docs
–jeroen






Leave a comment