Reputation: 185
So, I was playing with .Net core and decided to migrate my very small framework helper to it. Nothing fancy, just a few helper classes. The thing is, I simply can't get my dll to be referenced into other projects.
I have created a nupkg file using VS2017 "Generate NuGet package on build" and added it to my project. But VS loaded all the dependencies, but not my dll. It also added the dependencies twice.
Here are a couple of pictures of my config. Can anyone help me out here?
Thanks!
Upvotes: 1
Views: 133
Reputation: 185
Well, apparently, that "-rc1" in the version was screwing things.
So, I just changed the version to 0.9.0 instead of 1.0.0-rc1 and everything works fine.
Take care :)
Upvotes: 1