Exemplo n.º 1
0
        public void Configure(CommandLineApplication app)
        {
            Options.Configure(app);
            StrongNameOptions.Configure(app);

            OutputPathOption = app.Option(
                OutputPathTemplate,
                "Path to the emit the precompiled assembly to.",
                CommandOptionType.SingleValue);

            ApplicationNameOption = app.Option(
                ApplicationNameTemplate,
                "Name of the application to produce precompiled assembly for.",
                CommandOptionType.SingleValue);

            app.OnExecute(() => Execute());
        }