I have the following in my NetStandard Project
<ItemGroup>
<PackageReference Include="MyReference" Version="1.0.*" />
</ItemGroup>
When I change it to use the wildcard (instead of 1.0.1) I get an exclamation mark on the dependencies toggle, then the NuGet toggle and then of course the package itself.
When I check in, the CI build also fails on the other end, giving me
Unable to find package MyReference. No packages exist with this id in source(s): Microsoft Visual Studio Offline Packages, nuget.org
All of the above issues disappear when using the actual version with no wildcard (1.0.1), but I want to ensure that the .NET Core Restore Task, always restores to the latest package, and I was hoping a simple wildcard would do it.
NB - I am using my own private NuGet repository (Package Management Extension)
Please advise.
Why would using a wildcard fail during the CI build, indicating that it can't find the package?
So let's say I have project1 deployed to my own NuGet repository. Project2 has a dependency on Project1, which has been added as a NuGet package to Project2. Project1 package resides, without issue nor error in my own repository.
When I use the wildard and build locally, it works, and restores the latest version. When I check in the code changes (with wildcard left in the .csproj) - CI Build fails with the aforementioned error message.
As per the official doc
For your question