ReferencePath: path to allowed main files.
ReferenceCopyLocalPaths: links marked as "CopyLocal"well as their dependencies, including .pdbs, .xmls and satellites.
To check the contents of each element, add it to your .csproj file:
<Target Name="AfterBuild">
<Message Text="1. ReferencePath:%0D%0A%09@(ReferencePath->'$(OutDir)%(DestinationSubDirectory)%(Filename)%(Extension)', '%0D%0A%09')" />
<Message Text="2. ReferenceCopyLocalPaths:%0D%0A%09@(ReferenceCopyLocalPaths->'$(OutDir)%(DestinationSubDirectory)%(Filename)%(Extension)', '%0D%0A%09')" />
</Target>
source
share