Solution-wide Build Events

All your actions for Pre-Build / Post-Build events are already can be for all projects at once or individually for each.

(You should remember this for work with MSBuild engine etc.)

It should be useful for most cases, for example:

Use it with simple caller (external logic) or as internal scripts with any interpreters such as php, python, PowerShell, Wscript, Node.js, etc. Or use powerfull MSBuild & SBE-Scripts engines, etc.

For more complex scripts see our available modes and ~feel~free~ …

How about MSBuild Tool or how to work without Visual Studio

All your action may be handled without Visual Studio, for example, with msbuild.exe etc.

Moreover, you have different ways:

  • CI Gateways
    • CI.MSBuild - it easy way for work with all existing features. Powerful processing.
  • Call the after.<name>.sln.targets - it does not require additional steps, simply action.

after.<name>.sln.targets

You should already know about this - MSBuild: Extending the solution build, but you also should know that this variant may work with building from msbuild.exe and not from VS IDE…

But wait, "the any action is already can be for all projects at once". So just call this target in Targets Mode.

As result you should get unified processing in Visual Studio IDE and msbuild.exe.

What exists for work without plugins ?

In some cases, any extending of Visual Studio may be not suitable or not comfortable for some reasons (for example, your some box-solution, etc.)

Firstly, yes, our product may work without Visual Studio.

But a some reason may still require a very simple variant without any additions (it's really can be only for special case). So you can try other our solution - Variant 2: Targets & Map of projects (stackoverflow.com/a/18311007)

  • Complete script of this solution you can find here - it's not recomended, but you also may like this.

References