Reputation: 594
Sorry for laic question, but I do not understand what the Microsoft.NETCore.UniversalWindowsPlatform reference is for in a UWP application. This reference is added automatically. As I understand UWP is based on its own, separate api - the reference is Universal Platform. So the reference Microsoft.NETCore.UniversalWindowsPlatform should not be required. So my questions are thus:
Upvotes: 4
Views: 2224
Reputation: 65566
This reference can be considered an alias for all the packages and references needed in a Universal Windows app.
Having a single entry keeps the list smaller and more manageable and avoids issues with references to incompatible versions of related files.
You need this entry. It is used to get all the files related to the version of UWP that you are targeting.
Upvotes: 2