Esempio n. 1
0
        static void Main(string[] args)
        {
            if (args.Length < 2)
            {
                Console.Error.WriteLine("Usage: Ankh.GenPkgDef <output> <assemblies....>");
                Environment.ExitCode = 1;
                return;
            }

            using (StreamWriter pkgdef = File.CreateText(args[0]))
            {
                for (int i = 1; i < args.Length; i++)
                {
                    Assembly asm = Assembly.LoadFrom(args[i]);

                    foreach (Type type in asm.GetTypes())
                    {
                        if (type.IsAbstract)
                            continue;

                        using(PkgDefContext ctx = new PkgDefContext(pkgdef, type))
                        foreach (RegistrationAttribute ra in type.GetCustomAttributes(typeof(RegistrationAttribute), true))
                        {
                            ra.Register(ctx);
                        }
                    }
                }
            }
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            if (args.Length < 2)
            {
                Console.Error.WriteLine("Usage: Ankh.GenPkgDef <output> <assemblies....>");
                Environment.ExitCode = 1;
                return;
            }

            using (StreamWriter pkgdef = File.CreateText(args[0]))
            {
                for (int i = 1; i < args.Length; i++)
                {
                    Assembly asm = Assembly.LoadFrom(args[i]);

                    foreach (Type type in asm.GetTypes())
                    {
                        if (type.IsAbstract)
                        {
                            continue;
                        }

                        using (PkgDefContext ctx = new PkgDefContext(pkgdef, type))
                            foreach (RegistrationAttribute ra in type.GetCustomAttributes(typeof(RegistrationAttribute), true))
                            {
                                ra.Register(ctx);
                            }
                    }
                }
            }
        }
Esempio n. 3
0
            public PkgDefKey(PkgDefContext context, string name, PkgDefKey parent)
            {
                if (parent != null)
                {
                    _parent       = parent;
                    _parent._open = parent;
                }

                _context = context;
                _name    = name;
                WriteLine();
                WriteLine("[$RootKey$\\{0}]", name);
            }
Esempio n. 4
0
            public PkgDefKey(PkgDefContext context, string name, PkgDefKey parent)
            {
                if (parent != null)
                {
                    _parent = parent;
                    _parent._open = parent;
                }

                _context = context;
                _name = name;
                WriteLine();
                WriteLine("[$RootKey$\\{0}]", name);
            }