[msbuild] Use @(ReferencePath) instead of @(ResolvedFiles) (#2188)

This allows things to work on both xbuild and msbuild.

In xbuild, both lists are exactly the same and on msbuild,
only @(ReferencePath) exists.

Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=55147
This commit is contained in:
Jeffrey Stedfast 2017-06-12 14:29:45 -04:00 коммит произвёл Chris Hamons
Родитель 10fafc184f
Коммит f010926615
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -415,7 +415,7 @@ Copyright (C) 2014 Xamarin. All rights reserved.
NoOverwrite="@(_BundleResourceWithLogicalName)"
IntermediateOutputPath="$(IntermediateOutputPath)"
TargetFrameworkDirectory="$(TargetFrameworkDirectory)"
ReferencedLibraries="@(ResolvedFiles)">
ReferencedLibraries="@(ReferencePath)">
<Output TaskParameter="BundleResourcesWithLogicalNames" ItemName="_BundleResourceWithLogicalName" />
<Output TaskParameter="BundleResourcesWithLogicalNames" ItemName="FileWrites" />
</UnpackLibraryResources>