Reputation: 21855
I'm starting developing Windows Phone applications and even having a somewhat strong background in WPF is my first time with Silverlight. There are some things that I don't understand yet:
About the point 3, an screenshot to make it more clear:
These 3 references are creared with the following csproj line:
<Reference Include="Microsoft.Phone.Controls, Version=8.0.0.0, Culture=neutral, PublicKeyToken=24eec0d8c86cda1e, processorArchitecture=MSIL" />
Upvotes: 0
Views: 91
Reputation: 1356
Windows Phone
as the standard framework assembly in my projects (plus, of course, any other assemblies I choose to reference)If you're looking at sharing code across .NET platforms (e.g. Desktop, Phone, Win8/RT), you'll want to take a look at Portable Class Libraries. These effectively target a common subset of .NET functionality that can run on all supported platforms. It's a handy way of sharing code between Windows Phone and Windows 8 apps for instance.
Upvotes: 1