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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorEric St. John <ericstj@microsoft.com>2017-05-26 18:57:26 +0300
committerEric St. John <ericstj@microsoft.com>2017-05-26 19:00:15 +0300
commitb84bfcbaac496e9994978112ac90103af0a24422 (patch)
tree0f0a8c3dc9dd728e42b8b8285420b75ef298b531 /pkg
parent56a11c8478753c01abb23f7cc6ad3302c28286b8 (diff)
Fix missing quote in trimming item
Diffstat (limited to 'pkg')
-rw-r--r--pkg/NETStandard.Library.NETFramework/targets/NETStandard.Library.NETFramework.common.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/NETStandard.Library.NETFramework/targets/NETStandard.Library.NETFramework.common.targets b/pkg/NETStandard.Library.NETFramework/targets/NETStandard.Library.NETFramework.common.targets
index 675c39e521..660e24863e 100644
--- a/pkg/NETStandard.Library.NETFramework/targets/NETStandard.Library.NETFramework.common.targets
+++ b/pkg/NETStandard.Library.NETFramework/targets/NETStandard.Library.NETFramework.common.targets
@@ -29,7 +29,7 @@
<HandlePackageFileConflictsDependsOn>ImplicitlyExpandNETStandardFacades;$(HandlePackageFileConflictsDependsOn)</HandlePackageFileConflictsDependsOn>
</PropertyGroup>
- <ItemGroup Condition="$(DontTrimNETStandardLibraryNETFramework)' != 'true'">
+ <ItemGroup Condition="'$(DontTrimNETStandardLibraryNETFramework)' != 'true'">
<!-- mark this package as trimmable so that files in the same package aren't automatically rooted -->
<TrimmablePackages Include="NETStandard.Library.NETFramework" />
</ItemGroup>