Last active
December 30, 2017 14:36
-
-
Save mecvillarina/cb129afcf4afe47f473a1c371840d345 to your computer and use it in GitHub Desktop.
Xamarin - Support references from PCL’s to NET Standard 1.0 to 1.6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>netstandard1.6</TargetFramework> | |
<PackageTargetFallback>$(PackageTargetFallback);portable-win+net45+wp8+win81+wpa8</PackageTargetFallback> | |
<DebugType>Full</DebugType> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Xamarin.Forms" Version="2.5.0.121934" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="App.xaml.cs"> | |
<DependentUpon>*.xaml</DependentUpon> | |
</Compile> | |
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="MainPage.xaml.cs"> | |
<DependentUpon>*.xaml</DependentUpon> | |
</Compile> | |
</ItemGroup> | |
<ItemGroup> | |
<EmbeddedResource Update="CustomControls\CustomNavBar.xaml"> | |
<Generator>MSBuild:UpdateDesignTimeXaml</Generator> | |
</EmbeddedResource> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment