I have a Visual Studio 2015 Solution which contains multiple projects. Some of these projects reference each other. Example
Solution
Project A
Project B - references Project A
On teamcity, I want to create nuget packages for each of these projects, such that when Nuget is generating a package from Project B, I want it to be aware that Project A has a Nuget package and reference that Nuget package instead of having to use the -IncludeReferencedProjects flag.
Is this possible? If yes, how?