From 9b21b9aa6d2c21a8e6117dd3e85b006bbcd442ce Mon Sep 17 00:00:00 2001 From: Rainer Sigwald Date: Tue, 1 Aug 2017 17:22:28 -0500 Subject: [PATCH] Use reference assemblies for LC --- src/Tasks/Microsoft.Common.CurrentVersion.targets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tasks/Microsoft.Common.CurrentVersion.targets b/src/Tasks/Microsoft.Common.CurrentVersion.targets index d2262b50fa9..279fa1aa540 100644 --- a/src/Tasks/Microsoft.Common.CurrentVersion.targets +++ b/src/Tasks/Microsoft.Common.CurrentVersion.targets @@ -3028,7 +3028,7 @@ Copyright (C) Microsoft Corporation. All rights reserved. Name="CompileLicxFiles" Condition="'@(_LicxFile)'!=''" DependsOnTargets="$(CompileLicxFilesDependsOn)" - Inputs="$(MSBuildAllProjects);@(_LicxFile);@(ReferencePath);@(ReferenceDependencyPaths)" + Inputs="$(MSBuildAllProjects);@(_LicxFile);@(ReferencePathWithRefAssemblies);@(ReferenceDependencyPaths)" Outputs="$(IntermediateOutputPath)$(TargetFileName).licenses"> @@ -3040,7 +3040,7 @@ Copyright (C) Microsoft Corporation. All rights reserved. LicenseTarget="$(TargetFileName)" OutputDirectory="$(IntermediateOutputPath)" OutputLicense="$(IntermediateOutputPath)$(TargetFileName).licenses" - ReferencedAssemblies="@(ReferencePath);@(ReferenceDependencyPaths)" + ReferencedAssemblies="@(ReferencePathWithRefAssemblies);@(ReferenceDependencyPaths)" NoLogo="$(NoLogo)" ToolPath="$(LCToolPath)" SdkToolsPath="$(TargetFrameworkSDKToolsDirectory)"