1 write to _command
ilasm (1)
Program.cs (1)
22_command = command;
35 references to _command
ilasm (35)
Program.cs (35)
28if (Get(_command.Clock)) 33string[]? inputFiles = _command.Result.GetValue(_command.InputFilePaths); 34bool quiet = Get(_command.Quiet); 36if (!Get(_command.NoLogo) && !quiet) 59bool isDll = Get(_command.BuildDll); 60string? outputPath = Get(_command.OutputFilePath) ?? 87bool errorTolerant = Get(_command.ErrorTolerant); 90NoAutoInherit = Get(_command.NoAutoInherit), 95int subsystem = Get(_command.Subsystem); 101string? ssver = Get(_command.SubsystemVersion); 111int alignment = Get(_command.Alignment); 117long imageBase = Get(_command.ImageBase); 123int stackReserve = Get(_command.StackReserve); 129int flags = Get(_command.Flags); 136if (Get(_command.TargetX64) || Get(_command.Pe64)) 140else if (Get(_command.TargetArm)) 144else if (Get(_command.TargetArm64)) 150options.AppContainer = Get(_command.AppContainer); 151options.HighEntropyVA = Get(_command.HighEntropyVa); 152options.StripReloc = Get(_command.StripReloc); 153options.Prefer32Bit = Get(_command.Prefer32Bit); 156options.Deterministic = Get(_command.Deterministic); 157options.MetadataVersion = Get(_command.MetadataVersion); 160options.Debug = Get(_command.Debug); 161options.Pdb = Get(_command.Pdb); 162options.DebugMode = Get(_command.DebugMode); 165options.AssemblyName = Get(_command.AssemblyName); 166options.KeyFile = Get(_command.KeyFile); 167options.Optimize = Get(_command.Optimize); 168options.Fold = Get(_command.Fold); 171string? includePath = Get(_command.IncludePath); 289private T Get<T>(Argument<T> argument) => _command.Result.GetValue(argument)!; 291private T Get<T>(Option<T> option) => _command.Result.GetValue(option)!;