forked from xamarin/GoogleApisForiOSComponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMLKit.csproj
82 lines (70 loc) · 3.38 KB
/
MLKit.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="MSBuild.Sdk.Extras/2.0.54">
<PropertyGroup>
<TargetFrameworks>Xamarin.iOS10</TargetFrameworks>
<IsBindingProject>true</IsBindingProject>
<RootNamespace>Firebase.MLKit</RootNamespace>
<AssemblyName>Firebase.MLKit</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>0.19.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xamarin.Firebase.iOS.MLKit</PackageId>
<Title>Firebase APIs MLKit iOS Library</Title>
<Summary>C# bindings for Firebase APIs MLKit iOS Library</Summary>
<Description>
C# bindings for Firebase APIs MLKit iOS Library.
This NuGet references:
* Xamarin.Firebase.iOS.MLKit.ModelInterpreter
* Xamarin.Firebase.iOS.MLKit.NaturalLanguge
* Xamarin.Firebase.iOS.MLKit.Vision
If you don't need all MLKit, please, uninstall this NuGet and install just the one you need.
</Description>
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageIcon>firebaseiosmlkit_128x128.png</PackageIcon>
<PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=2125027</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>0.19.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="Xamarin.iOS" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<None Include="License.md" Pack="True" PackagePath="License.md" />
<None Include="../../../icons/firebaseiosmlkit_128x128.png" Pack="True" PackagePath="firebaseiosmlkit_128x128.png" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Enums.cs" />
<Compile Remove="ApiDefinition.cs" />
</ItemGroup>
<ItemGroup>
<ObjcBindingCoreSource Include="Enums.cs" Condition=" '$(EnableDefaultCompileItems)' == 'true'" />
</ItemGroup>
<ItemGroup>
<ObjcBindingApiDefinition Include="ApiDefinition.cs" Condition=" '$(EnableDefaultCompileItems)' == 'true'" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Build.Download" Version="0.10.0" PrivateAssets="None" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" PrivateAssets="None" />
<ProjectReference Include="..\Installations\Installations.csproj" PrivateAssets="None" />
<ProjectReference Include="..\InstanceID\InstanceID.csproj" PrivateAssets="None" />
<ProjectReference Include="..\ABTesting\ABTesting.csproj" PrivateAssets="None" />
<ProjectReference Include="..\RemoteConfig\RemoteConfig.csproj" PrivateAssets="None" />
<ProjectReference Include="..\MLKit.Common\MLKit.Common.csproj" PrivateAssets="None" />
<ProjectReference Include="..\MLKit.ModelInterpreter\MLKit.ModelInterpreter.csproj" PrivateAssets="None" />
<ProjectReference Include="..\MLKit.NaturalLanguage\MLKit.NaturalLanguage.csproj" PrivateAssets="None" />
<ProjectReference Include="..\MLKit.Vision\MLKit.Vision.csproj" PrivateAssets="None" />
</ItemGroup>
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
</Project>