Reputation: 15676
My shared project has no packages.config, so where is it storing the packages that it uses?
Also, when I edit references, the tabs are empty - I can't select anything.
What's going on here?
Upvotes: 0
Views: 195
Reputation: 12169
Shared Projects let you write common code that is referenced by a number of different application projects. The code is compiled as part of each referencing project and can include compiler directives to help incorporate platform-specific functionality into the shared code base.
Source: official documentation where you could find all the details.
Beside that there are few related thread on SO, like this one.
P.S.: Official Xamarin documentation nicely covering the code sharing options.
Upvotes: 2