INNER CODE UNIT · C#

Build

hamed-shirbandi/TaskoMask · src/6-Build/Build.cs:13

internal class Build : NukeBuild
{
    /// <summary>
    /// It will be run when you run the nuke command without any target
    /// The best practice is to always run it before pushing the changes to source
    /// Run directyly : cmd> nuke
    /// </summary>
    public static int Main() => Execute<Build>(x => x.RunMutationTests);

    [Parameter]
    private readonly Configuration Configuration = IsLocalBuild ? Configuration.Debug : Configuration.Release;

    [Solution]
    private readonly Solution Solution;

    [Parameter]
    private readonly AbsolutePath TestResultDirectory = RootDirectory + "/.nuke/Artifacts/Test-Results/";

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…