Skip to content

Commit

Permalink
Upgrading select packages to 10.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Essenmacher committed Apr 24, 2024
1 parent 5d6c456 commit be6e562
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 45 deletions.
54 changes: 27 additions & 27 deletions components.cake
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
// Firebase artifacts available to be built. These artifacts generate NuGets.
Artifact FIREBASE_AB_TESTING_ARTIFACT = new Artifact ("Firebase.ABTesting", "8.10.0.3", "11.0", ComponentGroup.Firebase, csprojName: "ABTesting");
Artifact FIREBASE_ANALYTICS_ARTIFACT = new Artifact ("Firebase.Analytics", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Analytics");
Artifact FIREBASE_AUTH_ARTIFACT = new Artifact ("Firebase.Auth", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Auth");
Artifact FIREBASE_CLOUD_FIRESTORE_ARTIFACT = new Artifact ("Firebase.CloudFirestore", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "CloudFirestore");
Artifact FIREBASE_CLOUD_FUNCTIONS_ARTIFACT = new Artifact ("Firebase.CloudFunctions", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "CloudFunctions");
Artifact FIREBASE_CLOUD_MESSAGING_ARTIFACT = new Artifact ("Firebase.CloudMessaging", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "CloudMessaging");
Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Core", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Core");
Artifact FIREBASE_ANALYTICS_ARTIFACT = new Artifact ("Firebase.Analytics", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Analytics");
Artifact FIREBASE_AUTH_ARTIFACT = new Artifact ("Firebase.Auth", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Auth");
Artifact FIREBASE_CLOUD_FIRESTORE_ARTIFACT = new Artifact ("Firebase.CloudFirestore", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "CloudFirestore");
Artifact FIREBASE_CLOUD_FUNCTIONS_ARTIFACT = new Artifact ("Firebase.CloudFunctions", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "CloudFunctions");
Artifact FIREBASE_CLOUD_MESSAGING_ARTIFACT = new Artifact ("Firebase.CloudMessaging", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "CloudMessaging");
Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Core", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Core");
Artifact FIREBASE_CRASHLYTICS_ARTIFACT = new Artifact ("Firebase.Crashlytics", "8.10.0.3", "11.0", ComponentGroup.Firebase, csprojName: "Crashlytics");
Artifact FIREBASE_DATABASE_ARTIFACT = new Artifact ("Firebase.Database", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Database");
Artifact FIREBASE_DATABASE_ARTIFACT = new Artifact ("Firebase.Database", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Database");
Artifact FIREBASE_DYNAMIC_LINKS_ARTIFACT = new Artifact ("Firebase.DynamicLinks", "8.10.0.3", "11.0", ComponentGroup.Firebase, csprojName: "DynamicLinks");
Artifact FIREBASE_IN_APP_MESSAGING_ARTIFACT = new Artifact ("Firebase.InAppMessaging", "8.10.0.3", "11.0", ComponentGroup.Firebase, csprojName: "InAppMessaging");
Artifact FIREBASE_INSTALLATIONS_ARTIFACT = new Artifact ("Firebase.Installations", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Installations");
Artifact FIREBASE_INSTALLATIONS_ARTIFACT = new Artifact ("Firebase.Installations", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Installations");
Artifact FIREBASE_PERFORMANCE_MONITORING_ARTIFACT = new Artifact ("Firebase.PerformanceMonitoring", "8.10.0.3", "11.0", ComponentGroup.Firebase, csprojName: "PerformanceMonitoring");
Artifact FIREBASE_REMOTE_CONFIG_ARTIFACT = new Artifact ("Firebase.RemoteConfig", "8.10.0.3", "11.0", ComponentGroup.Firebase, csprojName: "RemoteConfig");
Artifact FIREBASE_STORAGE_ARTIFACT = new Artifact ("Firebase.Storage", "10.17.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Storage");
Artifact FIREBASE_STORAGE_ARTIFACT = new Artifact ("Firebase.Storage", "10.18.0.0", "11.0", ComponentGroup.Firebase, csprojName: "Storage");
// Artifact FIREBASE_APP_DISTRIBUTION_ARTIFACT = new Artifact ("Firebase.AppDistribution", "8.10.0.1", "10.0", ComponentGroup.Firebase, csprojName: "AppDistribution");
// Artifact FIREBASE_APP_CHECK_ARTIFACT = new Artifact ("Firebase.AppCheck", "8.10.0.1", "11.0", ComponentGroup.Firebase, csprojName: "AppCheck");

Expand Down Expand Up @@ -136,38 +136,38 @@ void SetArtifactsPodSpecs ()
PodSpec.Create ("Firebase", "8.10.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseABTesting", targetName: "FirebaseABTesting", subSpecs: new [] { "ABTesting" })
};
FIREBASE_ANALYTICS_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseAnalytics", "10.17.0")
PodSpec.Create ("FirebaseAnalytics", "10.18.0")
};
FIREBASE_AUTH_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseAuth", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseAuth", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("RecaptchaInterop", "100.0.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_CLOUD_FIRESTORE_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseFirestore", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseFirestoreInternal", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseFirestore", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseFirestoreInternal", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("BoringSSL-GRPC", "0.0.24", frameworkSource: FrameworkSource.Pods, frameworkName: "openssl_grpc"),
PodSpec.Create ("gRPC-Core", "1.49.1", frameworkSource: FrameworkSource.Pods, frameworkName: "grpc"),
PodSpec.Create ("gRPC-C++", "1.49.1", frameworkSource: FrameworkSource.Pods, frameworkName: "grpcpp"),
PodSpec.Create ("abseil", "1.20220623.0", frameworkSource: FrameworkSource.Pods, frameworkName: "absl", subSpecs: new [] { "algorithm", "base", "memory", "meta", "strings", "time", "types" }),
PodSpec.Create ("Libuv-gRPC", "0.0.10", frameworkSource: FrameworkSource.Pods, frameworkName: "uv")
};
FIREBASE_CLOUD_FUNCTIONS_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseFunctions", "10.17.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseFunctions", "10.18.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_CLOUD_MESSAGING_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseMessaging", "10.17.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseMessaging", "10.18.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_CORE_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseAppCheckInterop", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseAuthInterop", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCore", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCoreExtension", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCoreInternal", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseMessagingInterop", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseSessions", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseSharedSwift", "10.17.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseAppCheckInterop", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseAuthInterop", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCore", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCoreExtension", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCoreInternal", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseMessagingInterop", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseSessions", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseSharedSwift", "10.18.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("GTMSessionFetcher", "3.4.1", frameworkSource: FrameworkSource.Pods, subSpecs: new [] { "Full" }),
PodSpec.Create ("GoogleAppMeasurement", "10.17.0"),
PodSpec.Create ("GoogleAppMeasurement", "10.18.0"),
PodSpec.Create ("GoogleDataTransport", "9.4.1", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("PromisesObjC", "2.4.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FBLPromises", targetName: "PromisesObjC"),
PodSpec.Create ("PromisesSwift", "2.4.0", frameworkSource: FrameworkSource.Pods, frameworkName: "Promises", targetName: "PromisesSwift"),
Expand All @@ -179,7 +179,7 @@ void SetArtifactsPodSpecs ()
PodSpec.Create ("Firebase", "8.10.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseCrashlytics", targetName: "FirebaseCrashlytics", subSpecs: new [] { "Crashlytics" })
};
FIREBASE_DATABASE_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseDatabase", "10.17.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseDatabase", "10.18.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_DYNAMIC_LINKS_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("Firebase", "8.10.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseDynamicLinks", targetName: "FirebaseDynamicLinks", subSpecs: new [] { "DynamicLinks" })
Expand All @@ -188,7 +188,7 @@ void SetArtifactsPodSpecs ()
PodSpec.Create ("Firebase", "8.10.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseInAppMessaging", targetName: "FirebaseInAppMessaging", subSpecs: new [] { "InAppMessaging" })
};
FIREBASE_INSTALLATIONS_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseInstallations", "10.17.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseInstallations", "10.18.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_PERFORMANCE_MONITORING_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("Firebase", "8.10.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebasePerformance", targetName: "FirebasePerformance", subSpecs: new [] { "Performance" })
Expand All @@ -197,7 +197,7 @@ void SetArtifactsPodSpecs ()
PodSpec.Create ("Firebase", "8.10.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseRemoteConfig", targetName: "FirebaseRemoteConfig", subSpecs: new [] { "RemoteConfig" })
};
FIREBASE_STORAGE_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseStorage", "10.17.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseStorage", "10.18.0", frameworkSource: FrameworkSource.Pods)
};
// FIREBASE_APP_DISTRIBUTION_ARTIFACT.PodSpecs = new [] {
// PodSpec.Create ("Firebase", "8.10.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseAppDistribution", targetName: "FirebaseAppDistribution", subSpecs: new [] { "AppDistribution" })
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/Analytics/Analytics.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.Analytics</RootNamespace>
<AssemblyName>Firebase.Analytics</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ProcessEnums>true</ProcessEnums>
Expand All @@ -27,7 +27,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/Auth/Auth.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.Auth</RootNamespace>
<AssemblyName>Firebase.Auth</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/CloudFirestore/CloudFirestore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.CloudFirestore</RootNamespace>
<AssemblyName>Firebase.CloudFirestore</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/CloudFunctions/CloudFunctions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.CloudFunctions</RootNamespace>
<AssemblyName>Firebase.CloudFunctions</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/CloudMessaging/CloudMessaging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.CloudMessaging</RootNamespace>
<AssemblyName>Firebase.CloudMessaging</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.Core</RootNamespace>
<AssemblyName>Firebase.Core</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/Database/Database.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.Database</RootNamespace>
<AssemblyName>Firebase.Database</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/Installations/Installations.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.Installations</RootNamespace>
<AssemblyName>Firebase.Installations</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions source/Firebase/Storage/Storage.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RootNamespace>Firebase.Storage</RootNamespace>
<AssemblyName>Firebase.Storage</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>10.17.0.0</FileVersion>
<FileVersion>10.18.0.0</FileVersion>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
<PackageProjectUrl>https://github.com/AdamEssenmacher/GoogleApisForiOSComponents</PackageProjectUrl>
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>10.17.0.0</PackageVersion>
<PackageVersion>10.18.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Folder Include="Resources\" />
Expand Down

0 comments on commit be6e562

Please sign in to comment.