コード例 #1
0
ファイル: ListCommand.cs プロジェクト: waelabed/Blazor
        public static void Command(CommandLineApplication command)
        {
            command.Description = "Lists the contents of the specified assembly.";
            command.HelpOption("-?|-h|--help");

            var assemblyOption = command.Option(
                "-a|--assembly",
                "The assembly whose contents should be listed.",
                CommandOptionType.SingleValue);

            command.OnExecute(() =>
            {
                if (!RequiredOptions.AssertHasValue(assemblyOption))
                {
                    return(1);
                }

                var inputPath = assemblyOption.Value();
                var items     = AssemblyItem.ListContents(inputPath);

                foreach (var item in items)
                {
                    Console.WriteLine($"{item} {item.CodeSize}");
                }

                return(0);
            });
        }
コード例 #2
0
        public static void Command(CommandLineApplication command)
        {
            command.Description = "Strips code from the specified assembly.";
            command.HelpOption("-?|-h|--help");

            var assemblyOption = command.Option(
                "-a|--assembly",
                "The assembly from which code should be stripped.",
                CommandOptionType.SingleValue);

            var specFileOption = command.Option(
                "-s|--spec",
                "The spec file describing which members to strip from the assembly.",
                CommandOptionType.SingleValue);

            var verboseOption = command.Option(
                "-v|--verbose",
                "If set, logs additional information to the console.",
                CommandOptionType.NoValue);

            var outputOption = command.Option(
                "-o|--output",
                "The location where the stripped assembly should be written.",
                CommandOptionType.SingleValue);

            command.OnExecute(() =>
            {
                if (!RequiredOptions.AssertHasValue(assemblyOption, specFileOption))
                {
                    return(1);
                }

                var inputPath = assemblyOption.Value();
                var specLines = File.ReadAllLines(specFileOption.Value());

                var outputPath = StripAssembly.Exec(
                    inputPath,
                    outputOption.Value(),
                    specLines,
                    verboseOption.HasValue());

                Console.WriteLine(
                    $" Input: {inputPath} ({FormatFileSize(inputPath)})");
                Console.WriteLine(
                    $"Output: {outputPath} ({FormatFileSize(outputPath)})");

                return(0);
            });
        }