-
Notifications
You must be signed in to change notification settings - Fork 2
/
GetDroidModel.csproj
86 lines (86 loc) · 4.25 KB
/
GetDroidModel.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
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.props" Condition="Exists('packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C98D4E20-6B5B-417E-85F6-4DD0A074A4C1}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>GetDroidModel</RootNamespace>
<AssemblyName>GetDroidModel</AssemblyName>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
<Description>Xamarin Helper Library to get the name of the current Android device.</Description>
<ReleaseVersion>1.5</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
<PackageId>dannycabrera.GetDroidModel</PackageId>
<PackageVersion>1.5</PackageVersion>
<Authors>Danny Cabrera</Authors>
<PackageLicenseUrl>https://github.com/dannycabrera/GetDroidModel/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/dannycabrera/GetDroidModel</PackageProjectUrl>
<Summary>A Xamarin library to get the current Android device details</Summary>
<PackageTags>Xamarin, Droid, Android, Device, Hardware, Model</PackageTags>
<Title>Get Android device model details for Xamarin</Title>
<NeutralLanguage>es-US</NeutralLanguage>
<Owners>Danny Cabrera</Owners>
<PackageReleaseNotes>Includes 1,805 updates (changes + new additions). Device list now contains 29,766 devices.</PackageReleaseNotes>
<TargetFrameworkVersion>v8.1</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>None</AndroidLinkMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
<EnableLLVM>false</EnableLLVM>
<DelaySign>false</DelaySign>
<NoWarn>
</NoWarn>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Mono.Android" />
</ItemGroup>
<ItemGroup>
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="DeviceHardware.cs" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" />
<None Include="package.nuspec" />
<None Include="README.md" />
<None Include="Resources\AboutResources.txt" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\values\Strings.xml" />
</ItemGroup>
<ItemGroup>
<Folder Include="Icons\" />
</ItemGroup>
<ItemGroup>
<AndroidAsset Include="Assets\supported_devices.csv" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
<Import Project="packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.targets" Condition="Exists('packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.targets')" />
</Project>