I have two separate API projects. Each has a solution file, both following this dir layout (ApiOne/ApiTwo);
/src
/ApiOne
/ApiOne.sln
/packages
/ApiOne
ApiOne.csproj
I would now like to create a new solution file and add both ApiOne.csproj and ApiTwo.csproj to that solution file, which may be stored anywhere on disk. The problem I have is that when building the solution in Visual Studio the package folder will be created next to the solution file and thus the project will not build as the references are defined as ..\packages\{ref}
.
Is there a way to instruct nuget to continue to create a packages folder for each project in the same location that it would if I where building the Api specific sln file?