Monobjc.Tools.Generators.BundleMaker.BundleMaker C# (CSharp) Method

BundleMaker() public method

Initializes a new instance of the BundleMaker class.
public BundleMaker ( String applicationName, String directory ) : System
applicationName String Name of the application.
directory String The directory.
return System
        public BundleMaker(String applicationName, String directory)
        {
            if (applicationName == null)
            {
                throw new ArgumentNullException("applicationName");
            }
            if (directory == null)
            {
                throw new ArgumentNullException("directory");
            }
            this.applicationName = applicationName;
            this.directory = Path.Combine(directory, this.applicationName + ".app");
        }