Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <Project Sdk="Microsoft.NET.Sdk">
  2.  
  3. <PropertyGroup>
  4. <TargetFramework>netstandard2.0</TargetFramework>
  5. </PropertyGroup>
  6.  
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <DebugType>pdbonly</DebugType>
  9. <DebugSymbols>true</DebugSymbols>
  10. </PropertyGroup>
  11.  
  12. <ItemGroup>
  13. <PackageReference Include="Xamarin.Forms" Version="4.2.0.709249" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Folder Include="Images\" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Remove="Images\ExampleImage.png" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <EmbeddedResource Include="Images\ExampleImage.png" />
  23. </ItemGroup>
  24. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement