Skip to content

Commit cfd9a37

Browse files
committed
Fix NuGetRestore condition
1 parent a9e8b4a commit cfd9a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/msbuild/ice.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Exec Command="powershell -ExecutionPolicy ByPass -Command &quot;[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;(New-Object Net.WebClient).DownloadFile('$(NugetURL)', '$(NugetExe)')&quot;"/>
1818
</Target>
1919

20-
<Target Name="NuGetRestore" DependsOnTargets="GetNuGet" Condition="!Exists('$(IceHome)\cpp')">
20+
<Target Name="NuGetRestore" DependsOnTargets="GetNuGet">
2121
<Exec Command="$(NuGetExe) restore &quot;$(MSBuildThisFileDirectory)..\C++ demos.sln&quot;"/>
2222
</Target>
2323

0 commit comments

Comments
 (0)