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