I have to move one of the library A out of project(which has lot's of library project in one solution) . library A contains lot's of project reference. So for moving that out i have to first have a nugget package for those project reference. For that i have created onewrapperlibrary which will contains those project reference and then converted that to nuget. Then i have included only that nuget inside library A so that it can have those dll. There are total 6 project reference in which 5 are working fine but 6th one is creating an issue given below.
"The type A is defined in assembly that is not referenced. You must add a reference to assembly "projectName Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
When i try to add that projectName as a nuget(package) reference then also i am getting same issue but when i add that "projectName" as a project(.csproj) reference then everything is working. Can anyone please let me know how can i resolve above issue.
If you need more details then please let me know so that i can add it here.