-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGrid.csproj
More file actions
71 lines (71 loc) · 3.52 KB
/
Copy pathGrid.csproj
File metadata and controls
71 lines (71 loc) · 3.52 KB
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
<Project Sdk="MSBuild.Sdk.Extras/3.0.44">
<PropertyGroup>
<TargetFrameworks>net8.0-android;net8.0-ios</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFrameworks);net8.0-windows10.0.19041</TargetFrameworks>
<AssemblyName>Zebble.Grid</AssemblyName>
<RootNamespace>Zebble</RootNamespace>
<PackageId>Zebble.Grid</PackageId>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<Version>4.1.0.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.Grid/master/Zebble-LicenseAgreement.txt</PackageLicenseUrl>
<PackageProjectUrl>https://nuget.org/packages/Zebble.Grid/</PackageProjectUrl>
<RepositoryUrl>https://github.com/Geeksltd/Zebble.Grid/</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/Geeksltd/Zebble.Grid/master/icon.png</PackageIconUrl>
<PackageTags>xamarin, windows, ios, android, zebble</PackageTags>
<Title>Zebble.Grid</Title>
<Description>A Grid is similar to ListView but instead of a single column it allows you to set the Columns (int) property.
The items in the data source will be rendered using the provided Template class.
Each row will be filled first before moving to the next row.Native Map component for Zebble apps.</Description>
<PackageReleaseNotes>Minor fixes</PackageReleaseNotes>
<Owners>Geeks Ltd</Owners>
<Authors>Geeks Ltd</Authors>
<Copyright>Geeks Ltd 2022, 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.Contains('windows')) ">
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<DefineConstants>$(DefineConstants);WINUI</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" $(TargetFramework.Contains('android')) ">
<DefineConstants>$(DefineConstants);ANDROID</DefineConstants>
<AndroidUseIntermediateDesignerFile>false</AndroidUseIntermediateDesignerFile>
</PropertyGroup>
<PropertyGroup Condition=" $(TargetFramework.Contains('ios')) ">
<DefineConstants>$(DefineConstants);IOS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="Shared\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(DefineConstants.Contains('WINUI')) ">
<Compile Include="WinUI\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(DefineConstants.Contains('ANDROID')) ">
<Compile Include="Android\**\*.cs" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="icon.png" />
<None Remove="Zebble-LicenseAgreement.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Zebble" Version="5.1.2" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(Running)'=='local'">
<Exec Command="update-local-nuget-cache $(TargetDir)" />
</Target>
</Project>