I've got an an assembly that targets netstandard 2.0 so that it can be used from .NET Core and full .NET Standard projects. I'm using the dotnet pack command to create a nuget package which is then being pushed into a local nuget host server (created by following the instructions found here.
Now, since netstandard base assemblies can be consumed from .NET 4.7.1 projects, I thought that I should be able to see nuget packages that target netstandard when I'm listing my local nuget packages from VS nuget package manager UI (and the project is being built against .NET 4.7.1). Unfortunately, the only way I've managed to get it to be shown was by changing the nuget.server settings so that it doesn't filter the returned results by framework version.
Is this the expected behavior? Shouldn't I be able to add references to nuget packages that have assemblies that target .net standard?
Luis