WixSharp.Project.BuildMsm C# (CSharp) 메소드

BuildMsm() 공개 메소드

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.
리턴 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);
        }