You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.
Doing nuget.exe restore correctly installs the package to $(SolutionDir)packages\. Upon building of the project it seems that nuget tries to install an overlay packge which succeeds but it gets installed in the wrong location thus .lib and .dll files cannot be found when linking. The error message is:
warning : Overlay Package 'OpenCV.overlay-x64_v120_Debug v2.4.10' installed correctly, but the nupkg file 'C:\project\packages\OpenCV.2.4.10\OpenCV.overlay-x64_v120_Debug.2.4.10' is not in the expected location.
It really isn't there, its at the top-level package source location or sometimes at the project root.
How do I fix this?
The text was updated successfully, but these errors were encountered:
gegenschall
changed the title
Problem with overlay package
Overlay package gets installed in wrong location
May 15, 2015
The cause is the change from NuGet v2 to NuGet v3. The entire API for custom commands has changed, which means the codebase in CoApp.NuGetNativeExtensions is broken unless you force the use of NuGet client v2 in your repository. It will likely not be an easy fix.
After updating Visual Studio 2013 to Update 4 several problems started appearing with one specific package (OpenCV 2.4.10) that uses Overlays:
For some project I have this line in my packages.config in the project root:
Doing
nuget.exe restore
correctly installs the package to$(SolutionDir)packages\
. Upon building of the project it seems that nuget tries to install an overlay packge which succeeds but it gets installed in the wrong location thus .lib and .dll files cannot be found when linking. The error message is:It really isn't there, its at the top-level package source location or sometimes at the project root.
How do I fix this?
The text was updated successfully, but these errors were encountered: