This repository was archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathCloudFirestore.targets
More file actions
62 lines (62 loc) · 3.07 KB
/
Copy pathCloudFirestore.targets
File metadata and controls
62 lines (62 loc) · 3.07 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
<Project>
<PropertyGroup>
<_FirebaseFirestoreId>FirebaseFirestore</_FirebaseFirestoreId>
<_grpcId>grpc</_grpcId>
<_grpcppId>grpcpp</_grpcppId>
<_openssl_grpcId>openssl_grpc</_openssl_grpcId>
<_abslId>absl</_abslId>
</PropertyGroup>
<ItemGroup Condition="('$(OutputType)' != 'Library' OR '$(IsAppExtension)' == 'True') AND ('$(TargetFrameworks)' == '' AND '$(TargetFramework)' == '')">
<_NativeReference Include="$(MSBuildThisFileDirectory)..\lib\xamarinios10\Firebase.CloudFirestore.resources\FirebaseFirestore.xcframework">
<_Id>$(_FirebaseFirestoreId)</_Id>
</_NativeReference>
<_NativeReference Include="$(MSBuildThisFileDirectory)..\lib\xamarinios10\Firebase.CloudFirestore.resources\grpc.xcframework">
<_Id>$(_grpcId)</_Id>
</_NativeReference>
<_NativeReference Include="$(MSBuildThisFileDirectory)..\lib\xamarinios10\Firebase.CloudFirestore.resources\grpcpp.xcframework">
<_Id>$(_grpcppId)</_Id>
</_NativeReference>
<_NativeReference Include="$(MSBuildThisFileDirectory)..\lib\xamarinios10\Firebase.CloudFirestore.resources\openssl_grpc.xcframework">
<_Id>$(_openssl_grpcId)</_Id>
</_NativeReference>
<_NativeReference Include="$(MSBuildThisFileDirectory)..\lib\xamarinios10\Firebase.CloudFirestore.resources\absl.xcframework">
<_Id>$(_abslId)</_Id>
</_NativeReference>
</ItemGroup>
<Target Name="_ResolveNativeReferencesForFirebaseFirestore"
BeforeTargets="ResolveNativeReferences"
Condition="('$(TargetFrameworks)' == '' AND '$(TargetFramework)' == '') OR '$(IsBindingProject)' == 'true'">
<ItemGroup>
<_NativeReference Update="@(_NativeReference)" Condition="'%(_NativeReference._Id)' == '$(_FirebaseFirestoreId)'">
<Kind>Framework</Kind>
<Frameworks>MobileCoreServices SystemConfiguration</Frameworks>
<SmartLink>True</SmartLink>
<ForceLoad>True</ForceLoad>
<LinkerFlags>-ObjC -lc++</LinkerFlags>
</_NativeReference>
<_NativeReference Update="@(_NativeReference)" Condition="'%(_NativeReference._Id)' == '$(_grpcId)'">
<Kind>Framework</Kind>
<SmartLink>True</SmartLink>
<ForceLoad>True</ForceLoad>
<LinkerFlags>-lc++ -lz</LinkerFlags>
</_NativeReference>
<_NativeReference Update="@(_NativeReference)" Condition="'%(_NativeReference._Id)' == '$(_grpcppId)'">
<Kind>Framework</Kind>
<SmartLink>True</SmartLink>
<ForceLoad>True</ForceLoad>
</_NativeReference>
<_NativeReference Update="@(_NativeReference)" Condition="'%(_NativeReference._Id)' == '$(_openssl_grpcId)'">
<Kind>Framework</Kind>
<SmartLink>True</SmartLink>
<ForceLoad>True</ForceLoad>
</_NativeReference>
<_NativeReference Update="@(_NativeReference)" Condition="'%(_NativeReference._Id)' == '$(_abslId)'">
<Kind>Framework</Kind>
<SmartLink>True</SmartLink>
<ForceLoad>True</ForceLoad>
<LinkerFlags>-lc++</LinkerFlags>
</_NativeReference>
<NativeReference Include="@(_NativeReference)" />
</ItemGroup>
</Target>
</Project>