WixSharp.Project.BuildMsmCmd C# (CSharp) Method

BuildMsmCmd() public method

Builds the WiX source file and generates batch file capable of building MSM with WiX toolset.
public BuildMsmCmd ( string path = null ) : string
path string The path to the batch file to be build.
return string
        public string BuildMsmCmd(string path = null)
        {
            if (Compiler.ClientAssembly.IsEmpty())
                Compiler.ClientAssembly = System.Reflection.Assembly.GetCallingAssembly().Location;

            if (path == null)
                return Compiler.BuildMsmCmd(this);
            else
                return Compiler.BuildMsmCmd(this, path);
        }