-
Notifications
You must be signed in to change notification settings - Fork 1
/
DateTimePicker.csproj
76 lines (76 loc) · 3.55 KB
/
DateTimePicker.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<Project Sdk="MSBuild.Sdk.Extras/3.0.44">
<PropertyGroup>
<TargetFrameworks>Xamarin.iOS10;MonoAndroid13.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFrameworks);uap10.0.18362</TargetFrameworks>
<AssemblyName>Zebble.DateTimePicker</AssemblyName>
<RootNamespace>Zebble</RootNamespace>
<PackageId>Zebble.DateTimePicker</PackageId>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<Version>4.6.295.0</Version>
<PackOnBuild>true</PackOnBuild>
<NeutralLanguage>en</NeutralLanguage>
<DefineConstants>$(DefineConstants)</DefineConstants>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<LangVersion>latest</LangVersion>
<DebugType>portable</DebugType>
<PackageLicenseUrl>https://raw.githubusercontent.com/Geeksltd/Zebble.DateTimePicker/master/Zebble-LicenseAgreement.txt</PackageLicenseUrl>
<PackageProjectUrl>https://nuget.org/packages/Zebble.DateTimePicker/</PackageProjectUrl>
<RepositoryUrl>https://github.com/Geeksltd/Zebble.DateTimePicker/</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/Geeksltd/Zebble.DateTimePicker/master/icon.png</PackageIconUrl>
<PackageTags>xamarin, windows, ios, android, zebble</PackageTags>
<Title>Zebble.DateTimePicker</Title>
<Description>Basic date picker and time picker components for Zebble.</Description>
<PackageReleaseNotes>Minor fixes</PackageReleaseNotes>
<Owners>Geeks Ltd</Owners>
<Authors>Geeks Ltd</Authors>
<Copyright>Geeks Ltd 2023, All rights reserved.</Copyright>
<DisableExtraReferences>true</DisableExtraReferences>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugSymbols>true</DebugSymbols>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Release' ">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" $(TargetFramework.StartsWith('uap10.0')) ">
<DefineConstants>$(DefineConstants);UWP</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" $(TargetFramework.StartsWith('MonoAndroid')) ">
<DefineConstants>$(DefineConstants);ANDROID</DefineConstants>
<AndroidUseIntermediateDesignerFile>false</AndroidUseIntermediateDesignerFile>
</PropertyGroup>
<PropertyGroup Condition=" $(TargetFramework.StartsWith('Xamarin.iOS')) ">
<DefineConstants>$(DefineConstants);IOS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="Shared\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('uap10.0')) ">
<Compile Include="UWP\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('MonoAndroid')) ">
<Compile Include="Android\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.iOS')) ">
<Compile Include="iOS\**\*.cs" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="icon.png" />
<None Remove="README.md" />
<None Remove="Zebble-LicenseAgreement.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Olive" Version="2.1.334" />
<PackageReference Include="Zebble" Version="4.5.672" />
<PackageReference Include="Zebble.ItemPicker" Version="3.12.176" />
</ItemGroup>
<ItemGroup>
<Folder Include="Android\" />
<Folder Include="iOS\" />
<Folder Include="UWP\" />
</ItemGroup>
</Project>