2019-03-21 22:01:16 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-11-09 06:21:05 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2017-11-29 03:01:48 +00:00
|
|
|
|
<Version>1.0.0</Version>
|
|
|
|
|
<Authors>praeclarum</Authors>
|
|
|
|
|
<Description>Xamarin.Forms backend for the web using Ooui technologies.</Description>
|
|
|
|
|
<PackageTags>Ooui;UI;CrossPlatform;Xamarin.Forms</PackageTags>
|
|
|
|
|
<PackageIconUrl>https://github.com/praeclarum/Ooui/raw/master/Documentation/Icon.png</PackageIconUrl>
|
|
|
|
|
<PackageProjectUrl>https://github.com/praeclarum/Ooui</PackageProjectUrl>
|
|
|
|
|
<PackageLicenseUrl>https://github.com/praeclarum/Ooui/blob/master/LICENSE</PackageLicenseUrl>
|
|
|
|
|
<RepositoryUrl>https://github.com/praeclarum/Ooui.git</RepositoryUrl>
|
2018-03-14 00:56:11 +00:00
|
|
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
2017-11-09 21:03:56 +00:00
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
</PropertyGroup>
|
2018-03-10 05:28:39 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" $(TargetFramework) == 'netstandard1.0' ">
|
|
|
|
|
<DefineConstants>PCL</DefineConstants>
|
2017-11-09 21:03:56 +00:00
|
|
|
|
</PropertyGroup>
|
2018-03-10 05:28:39 +00:00
|
|
|
|
|
2017-11-09 06:21:05 +00:00
|
|
|
|
<ItemGroup>
|
2019-03-21 22:01:16 +00:00
|
|
|
|
<PackageReference Include="Xamarin.Forms" Version="3.6.0.264807" />
|
2017-11-09 06:21:05 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-11-09 09:38:19 +00:00
|
|
|
|
<Folder Include="Extensions\" />
|
2017-12-28 20:01:00 +00:00
|
|
|
|
<Folder Include="Controls\" />
|
2017-11-09 06:21:05 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Ooui\Ooui.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|