Skip to content

Instantly share code, notes, and snippets.

@espresso3389
Created May 30, 2017 21:59
Show Gist options
  • Save espresso3389/56a89acc84d3d0eaf7e7c8da572a433e to your computer and use it in GitHub Desktop.
Save espresso3389/56a89acc84d3d0eaf7e7c8da572a433e to your computer and use it in GitHub Desktop.
Xamarin.Forms+.NET Standard 1.6
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.6</TargetFramework>
<PackageTargetFallback>portable-net45+win8+wpa81+wp8</PackageTargetFallback>
<DebugType>full</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="2.3.4.247" />
</ItemGroup>
<ItemGroup>
<!-- https://bugzilla.xamarin.com/show_bug.cgi?id=55591 -->
<None Remove="**\*.xaml" />
<Compile Update="**\*.xaml.cs" DependentUpon="%(Filename)" />
<EmbeddedResource Include="**\*.xaml" SubType="Designer" Generator="MSBuild:UpdateDesignTimeXaml" />
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment