예제 #1
0
        static void Main(string[] args)
        {
            // Determine the Visual Studio version to use. When not specified on the command-line, use 10.0 for VS2010.
            var vsVersion          = (args.Length > 3 ? args[3] : "10.0");
            CreateImageListApp app = new CreateImageListApp(new Guid(args[0]), args[1], args[2], vsVersion);

            app.Run();
        }
예제 #2
0
        static void Main(string[] args)
        {
            CreateImageListApp app = new CreateImageListApp(new Guid(args[0]), args[1], args[2]);

            app.Run();
        }