예제 #1
0
파일: Program.cs 프로젝트: bg6aer/Sora
        static void Main(string[] args)
        {
            if (args.Length != 2)
            {
                Console.WriteLine("Usage: WixGen configfile wixfile");
                return;
            }

            WixCreator wixCreator = new WixCreator();
            wixCreator.CreateWix(args[0], args[1]);
        }
예제 #2
0
        static void Main(string[] args)
        {
            if (args.Length != 2)
            {
                Console.WriteLine("Usage: WixGen configfile wixfile");
                return;
            }

            WixCreator wixCreator = new WixCreator();

            wixCreator.CreateWix(args[0], args[1]);
        }