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