-
Notifications
You must be signed in to change notification settings - Fork 264
Open
Labels
Functionality:RestorePriority:3Issues under consideration. With enough upvotes, will be reconsidered to be added to the backlog.Issues under consideration. With enough upvotes, will be reconsidered to be added to the backlog.Resolution:ByDesignThis issue appears to be ByDesignThis issue appears to be ByDesignStatus:Excluded from icebox cleanupStatus:InactiveIcebox issues not updated for a specific long timeIcebox issues not updated for a specific long timeType:DCRDesign Change RequestDesign Change Request
Description
- Create a NETCore/NETStandard project (PackageReference).
- Have it depend on a package (say NuGetPlayLib) that has versions 1.1.0,1.2.0,1.3.0,2.0.0
- Now edit the csproj file to make the dependency on "1.*"
<ItemGroup> <PackageReference Include="NuGetPlayLib" Version="1.*" /> </ItemGroup>
- Remove the versions 1.* from the feeds
- Restore package dependencies for the project
Expected: It should throw an error as it would have if the dependency was specified as:
<ItemGroup> <PackageReference Include="NuGetPlayLib" Version="[1.0.0, 2.0.0)" /> </ItemGroup>
Actual: It resolves to version 2.0.0
mungojam
Metadata
Metadata
Assignees
Labels
Functionality:RestorePriority:3Issues under consideration. With enough upvotes, will be reconsidered to be added to the backlog.Issues under consideration. With enough upvotes, will be reconsidered to be added to the backlog.Resolution:ByDesignThis issue appears to be ByDesignThis issue appears to be ByDesignStatus:Excluded from icebox cleanupStatus:InactiveIcebox issues not updated for a specific long timeIcebox issues not updated for a specific long timeType:DCRDesign Change RequestDesign Change Request