31 references to Get
ilasm (31)
Program.cs (31)
26if (Get(_command.Clock)) 32bool quiet = Get(_command.Quiet); 34if (!Get(_command.NoLogo) && !quiet) 57bool isDll = Get(_command.BuildDll); 58string? outputPath = Get(_command.OutputFilePath) ?? 81bool errorTolerant = Get(_command.ErrorTolerant); 84NoAutoInherit = Get(_command.NoAutoInherit), 90int subsystem = Get(_command.Subsystem); 96string? ssver = Get(_command.SubsystemVersion); 106int alignment = Get(_command.Alignment); 112long imageBase = Get(_command.ImageBase); 118int stackReserve = Get(_command.StackReserve); 124int flags = Get(_command.Flags); 131if (Get(_command.TargetX64) || Get(_command.Pe64)) 135else if (Get(_command.TargetArm)) 139else if (Get(_command.TargetArm64)) 145options.AppContainer = Get(_command.AppContainer); 146options.HighEntropyVA = Get(_command.HighEntropyVa); 147options.StripReloc = Get(_command.StripReloc); 148options.Prefer32Bit = Get(_command.Prefer32Bit); 151options.Deterministic = Get(_command.Deterministic); 152options.MetadataVersion = Get(_command.MetadataVersion); 155options.Debug = Get(_command.Debug); 156options.Pdb = Get(_command.Pdb); 157options.DebugMode = Get(_command.DebugMode); 160options.AssemblyName = Get(_command.AssemblyName); 161options.KeyFile = Get(_command.KeyFile); 162options.Optimize = Get(_command.Optimize); 163options.Fold = Get(_command.Fold); 167string? includePath = Get(_command.IncludePath);