1

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!

enter image description here

enter image description here

enter image description here

3
  • 1
    Please post the project file for both the library and the application trying to consume it, as text in the question rather than screenshots. Ideally cut this down to a minimal reproducible example so we can reproduce it ourselves. Commented Jun 27, 2017 at 2:41
  • The Solution explorer clearly shows that Framework.Core is a dependency of Ecominas.Domain. So, can you explain what exactly is the issue? Commented Jun 27, 2017 at 21:55
  • Even though the explorer says that, I cannot use any of the content from Framework.Core. Not even a simple "using Framework;" works. VS keeps saying that I forgot an assembly reference. Commented Jun 27, 2017 at 22:03

1 Answer 1

1

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 :)

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.