Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 807 Bytes

File metadata and controls

21 lines (17 loc) · 807 Bytes
title NuGet Warning NU1602
description NU1602 warning code
author zhili1208
ms.author lzhi
ms.date 06/25/2018
ms.topic reference
ms.reviewer anangaur
f1_keywords
NU1602

NuGet Warning NU1602

'PackageA' 4.0.0 does not provide an inclusive lower bound for dependency 'PackageB' (> 3.5.0). An approximate best match of 3.6.0 was resolved.

Issue

A package dependency is missing a lower bound. This doesn't allow restore to find the best match. Each restore will float downwards trying to find a lower version that can be used. This means that restore goes online to check all sources each time instead of using the packages that already exist in the user package folder.

Solution

This is usually a package authoring error. Contact the package author to resolve the issue.