It's not obvious me how to incorporate .net core and .net standard into a blank xamarin xaml forms app. Can someone please step me through it?
Do this, start Visual Studio 2015, Create a Visual C# / Cross-Platform / Blank Xaml App (Xamarin.Forms Portable) project. Once that completes, integrate .Net Core and .Net Standard
Totally plagiarized from http://motzcod.es/, but put here since I get tagged if I just link to content. Sorry James...
Links on migrating from DNX to .NET Core CLI - https://learn.microsoft.com/en-us/dotnet/articles/core/migrating-from-dnx
After your upgrade a PCL to netstandard you will get a project.json such as this:
Now, all we need to do is add a special “imports” flag and the PCLs we would like to consume under the netstandard profile
That little imports flag essentially tells NuGet that this package will totally work with PCLs that support this. Now you should be good to go to install any PCL NuGet that you would like:
Again, directly plagiarized from James Montemagno at http://motzcod.es/ . Full credit to the author.