public static async Task RunAsync()

in src/build/BullseyeTargets/CompileMsiTarget.cs [11:28]


        public static async Task RunAsync(BuildContext ctx)
        {
            var cmd = ctx.GetCommand();
            var ap = ctx.GetArtifactPackage();

            var args = string.Join(' ', new string[]
            {
                "--package=" + Path.GetFileNameWithoutExtension(ap.FileName).Quote(),
                ((cmd as ISupportWxsOnlySwitch).WxsOnly ? "--wxs-only" : string.Empty),
                "--keep-temp-files --verbose",
            });

            var compilerPath = Path
                .Combine(ctx.CompilerDir, MagicStrings.Beats.CompilerName + MagicStrings.Ext.DotExe)
                .Quote();

            await SimpleExec.Command.RunAsync(compilerPath, args, ctx.InDir);
        }