Пример #1
0
        static void Main(string[] args)
        {
            Assembly     asm = Assembly.GetEntryAssembly();
            AssemblyName an  = asm.GetName();

            Configuration config;

#if DEBUG
            config = Configuration.Debug;
#else
            config = Configuration.Release;
#endif

            var worker = new PackageCreator(ProductInformation.ApplicationDisplayName, an.Version, config);
            worker.Execute();
        }