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
diff options
context:
space:
mode:
authorEric Mellino <erme@microsoft.com>2017-04-08 00:04:40 +0300
committerEric Mellino <erme@microsoft.com>2017-04-11 00:36:01 +0300
commitede99bedfd511d329289b7176f543c6c43c4e989 (patch)
tree3cc80a85cd37cd36c93975a5e39b2ea8403df363 /Tools-Override
parent471fe9d8517edabe49a0226456870c4843894637 (diff)
Pass ConfigurationGroup and ArchitectureGroup to restore command.
Diffstat (limited to 'Tools-Override')
-rwxr-xr-xTools-Override/packageresolve.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools-Override/packageresolve.targets b/Tools-Override/packageresolve.targets
index 5e12d0f33e..27066086b1 100755
--- a/Tools-Override/packageresolve.targets
+++ b/Tools-Override/packageresolve.targets
@@ -37,7 +37,7 @@
<PropertyGroup>
<_DnuRestoreCommandRidPortion Condition="'$(RidSpecificAssets)' == 'true'">-r $(NuGetRuntimeIdentifier)</_DnuRestoreCommandRidPortion>
- <_DnuRestoreCommandFull>$(DnuRestoreCommand) $(ProjectJson) /p:TargetGroup=$(TargetGroup) /p:TargetFramework=$(NuGetTargetMonikerShort) $(_DnuRestoreCommandRidPortion)</_DnuRestoreCommandFull>
+ <_DnuRestoreCommandFull>$(DnuRestoreCommand) $(ProjectJson) /p:TargetGroup=$(TargetGroup) /p:ConfigurationGroup=$(ConfigurationGroup) /p:ArchGroup=$(ArchGroup) /p:TargetFramework=$(NuGetTargetMonikerShort) $(_DnuRestoreCommandRidPortion)</_DnuRestoreCommandFull>
</PropertyGroup>
<Exec Condition="Exists('$(ProjectJson)') AND '$(RestoreRequired)' == 'true'" Command="$(_DnuRestoreCommandFull)" StandardOutputImportance="Low" CustomErrorRegularExpression="^Unable to locate .*" />