Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Boemer <sbomer@gmail.com>2022-08-10 00:49:38 +0300
committerGitHub <noreply@github.com>2022-08-10 00:49:38 +0300
commit6e8e139a484f74c524c821c7a4a08287d77257a4 (patch)
treeec35427ca13c5e3457ac3703b0b59663b8662f8c
parented5e18d518298448d298fde40c7113d51701162b (diff)
Fix missing parenthesis (#2956)
-rw-r--r--src/ILLink.Tasks/build/Microsoft.NET.ILLink.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ILLink.Tasks/build/Microsoft.NET.ILLink.targets b/src/ILLink.Tasks/build/Microsoft.NET.ILLink.targets
index 484bf0899..76cf47287 100644
--- a/src/ILLink.Tasks/build/Microsoft.NET.ILLink.targets
+++ b/src/ILLink.Tasks/build/Microsoft.NET.ILLink.targets
@@ -224,7 +224,7 @@ Copyright (c) .NET Foundation. All rights reserved.
</PropertyGroup>
<!-- Enable serialization discovery for compat in < 7.0 -->
- <PropertyGroup Condition="$([MSBuild]::VersionLessThan('$(TargetFrameworkVersion)', '7.0')">
+ <PropertyGroup Condition="$([MSBuild]::VersionLessThan('$(TargetFrameworkVersion)', '7.0'))">
<_ExtraTrimmerArgs>--enable-serialization-discovery $(_ExtraTrimmerArgs)</_ExtraTrimmerArgs>
</PropertyGroup>