I have a problem with nuget getting the first build of a specifik assembly version, not the latest build. Here are steps that explain what is going on:
- Removing local nuget cache.
- Delete project.lock.json files in project.
- Checking build number for latest build in nuget feed: 102
- Run dotnet restore --no-cache.
- The project folder is recreated in local cache, but with build number 98.
Both build 98 and 102 have version number 1.2. How can I force dotnet restore to take the latest build of the nuget package without increasing the version number to 1.3?
Thanks!