WixSharp.Project.BuildMsm C# (CSharp) Method

BuildMsm() public method

Builds the MSM file from the specified Project instance.
public BuildMsm ( string path = null ) : string
path string The path to the MSM file to be build.
return string
        public string BuildMsm(string path = null)
        {
            if (Compiler.ClientAssembly.IsEmpty())
                Compiler.ClientAssembly = System.Reflection.Assembly.GetCallingAssembly().Location;

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