31 references to Get
ilasm (31)
Program.cs (31)
28if (Get(_command.Clock)) 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);