Fix msbuild targets to correctly copy deps.json

This commit is contained in:
Massimiliano Donini 2018-08-24 09:09:27 +02:00 committed by Pranav K
parent 96b77c8663
commit 17d72c2b94
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
Include="$([System.IO.Path]::ChangeExtension('%(_ContentRootProjectReferences.ResolvedFrom)', '.deps.json'))" />
</ItemGroup>
<Copy SourceFiles="%(DepsFilePaths.FullPath)" DestinationFolder="$(OutputPath)" Condition="Exists('%(DepsFilePaths.FullPath)')" />
<Copy SourceFiles="%(DepsFilePaths.FullPath)" DestinationFolder="$(OutDir)" Condition="Exists('%(DepsFilePaths.FullPath)')" />
</Target>
</Project>