I have a .net solution consisting of 3 projects
- myproject.Interfaces
- myproject.Models
- myproject.Core
When I create a NuGet on myproject.Core:
dotnet pack c:\Dev\myproject.Core.csproj -c Release
and try to install it in another project it's saying that
I'm missing .Models and .Interfaces.
Is there a way to include myproject.Models and myprojects.Interfaces within .Core NuGet? so that I have to install ONLY .Core nuGet in my projects?