Skip to content

Commit f5899ab

Browse files
rolfbjarneCopilot
andauthored
Update tools/dotnet-linker/LinkerConfiguration.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 3561a52 commit f5899ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/dotnet-linker/LinkerConfiguration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,9 @@ public static LinkerConfiguration GetInstance (LinkContext context)
273273
break;
274274
case "PublishReadyToRun":
275275
if (!string.IsNullOrEmpty (value)) {
276-
if (!TryParseOptionalBoolean (value, out var publish_ready_to_run))
276+
if (!TryParseOptionalBoolean (value, out var publishReadyToRun))
277277
throw new InvalidOperationException ($"Unable to parse the {key} value: {value} in {linker_file}");
278-
Application.PublishReadyToRun = publish_ready_to_run;
278+
Application.PublishReadyToRun = publishReadyToRun;
279279
}
280280
break;
281281
case "ReferenceNativeSymbol": {

0 commit comments

Comments
 (0)