Remove ios, windows8, and wp8 from Xamarin Forms PCL – nuget 3.0 opt-into error?

The solution that worked for me: Uninstall Xamarin.Forms: Right Click Solution -> Manage NuGet Packages -> Uninstall Xamarin.Forms -> Restart VS Then remove build platforms: Right Click Solution -> Properties -> Build -> under Targeting select Change -> Remove platform(s) -> Restart VS Reinstall Xamarin.Forms: Manage NuGet packages -> Search for Xamarin.Forms -> Install -> … Read more

UWP: how to start an exe file that is located in specific directory?

Today I wrote a program to successfully launch any .exe programs from UWP. Want to share the process for the benefit of others. This is in addition to the answer by stefan Wick MSFT. First the package.appmanifest needs to be updated. This is what I have in package.appmanifest: <?xml version=”1.0″ encoding=”utf-8″?> <Package xmlns=”http://schemas.microsoft.com/appx/manifest/foundation/windows10″ xmlns:mp=”http://schemas.microsoft.com/appx/2014/phone/manifest” xmlns:uap=”http://schemas.microsoft.com/appx/manifest/uap/windows10″ … Read more