Skip to content

BlackGad/PS.Build

Repository files navigation

PS.Build: Toolchain to control msbuild process via C# code

NuGet Version Build status MyGet CI Build status

Build process with MSBuild engine is powerful and simple. Current toolchain allows developer to extend and adapt his project build process using inline C# code via Attributes.

Future

First implementation showed its best and worst sides.

Plusses:

  • It really works :)

Minuses:

  • Assembly dependencies isolation battlefield. Cause really big issues in external adaptations.
  • Slows build process.

Next step - rewrite assembly dependencies issolation. This will cause some functionality downgrade (source code processing with internal Roslyn components in adaptations, data sharing with vault service.). But it is necessary for future platform evolution.

Known adaptations

  • NuGet - NuGet stuff via attributes

Usage

Build process extending have 2 logical parts

  • Attribute definition
  • Adaptation applying

Attribute definition looks like generic C# attribute definition with additional DesignerAttribute("PS.Build.Adaptation") attribute and several implemented methods with specific signature. Available methods:

  • Setup - called before any other method. Here you can setup adaptation specific logic.
  • PreBuild - called before build. Here you can analyze MSBuild environment before build. Also gives the opportunity to add additional generated MSBuild items.
  • PostBuild – called after build. Here you can setup deploy, clean etc tasks.

To execute defined earlier instructions you must add reference to PS.Build.Tasks nuget package and apply attributes to relevant elements. NOTE: attribute definition must be in separate assembly. Adaptation definition and usage in same assembly not implemented yet (Technically it is possible but whole build process time will be dramatically increased).

Adaptation definition example:

using System;
using System.ComponentModel;
using PS.Build.Extensions;
using PS.Build.Services;

namespace Test
{
    [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = false)]
    [Designer("PS.Build.Adaptation")]
    public sealed class AdaptationAttribute : Attribute
    {
        static void Setup(IServiceProvider provider)
        {
            var logger = provider.GetService<ILogger>();
            logger.Info("Initialization");
        }

        private readonly int _essentialQuestion;

        #region Constructors

        public AdaptationAttribute(int essentialQuestion)
        {
            _essentialQuestion = essentialQuestion;
        }

        #endregion

        #region Members

        void PostBuild(IServiceProvider provider)
        {
            var logger = provider.GetService<ILogger>();
            logger.Info("Goodbye cruel world");
        }

        void PreBuild(IServiceProvider provider)
        {
            var logger = provider.GetService<ILogger>();
            logger.Info("Hello world");
            logger.Info("The answer is: " + _essentialQuestion);
        }

        #endregion
    }
}

Adaptation usage example:

using Test;

[assembly: Adaptation(42)]

How it works

PS.Build.Tasks nuget package contains MSBuild task which uses Roslyn engine to analyze target assembly source code for adaptation attributes usage prior to compilation and execute their methods with specific signature.

Adaptation methods invocation order

Adaptation methods calls are strongly ordered.

This feature allows you to control cross attribute interaction using dynamic vault service

Attributes isolation

It is crucial to keep compiled output in clean state with minimum amount of dependencies. Main adaptation attributes mission - allow you to modify build process. There is no reason to stay in runtime code after build process. That's why attributes must be isolated with ADAPTATION preprocessor directive. Escape all your attributes with this directive. Generic behavior for any file with not isolated adaptations - source code rewriting with cutted definitions to intermediate folder.

Intellisense issues

When you add additional COMPILE items on PreBuild instruction with artifactory service your intellisense will not resolve them automatically. It happens because intelisense engine parses your compile items independenly from MSBuild. To solve this you have two major options:

  • Compile project and reload it with out cleaning. Intellisense updates on project load so it will discover new items and parse them.
  • Add to COMPILE item where you applying attribute (and all dependant items) metadata <Generator>MSBuild:Compile</Generator> it forces intellisense to update on every file change.

Documentation

Additional information could be found at project wiki page

About

Library for extending MSBuild process

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published