Skip to content

Commit edf39b4

Browse files
committed
[PSPDFKit.iOS] Bump bindings to v13.3.0
1 parent e2489e8 commit edf39b4

File tree

79 files changed

+278
-1764
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+278
-1764
lines changed

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ tools/
1717
packages/
1818
.vs/
1919
nuget/pkgs/
20-
MAUI/cache/
21-
MAUI/nuget/pkgs/
2220
Directory.Build.props
2321

2422
# Xcode

Examples/PSPDFCatalog/PSPDFCatalog/PSPDFCatalog.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
2626
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
2727
<MtouchExtraArgs>--registrar:static</MtouchExtraArgs>
28+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2829
</PropertyGroup>
2930
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
3031
<DebugType>full</DebugType>
@@ -36,6 +37,7 @@
3637
<MtouchArch>x86_64</MtouchArch>
3738
<ConsolePause>false</ConsolePause>
3839
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
40+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3941
</PropertyGroup>
4042
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
4143
<DebugSymbols>true</DebugSymbols>
@@ -55,6 +57,7 @@
5557
<MtouchI18n>
5658
</MtouchI18n>
5759
<MtouchLink>SdkOnly</MtouchLink>
60+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5861
</PropertyGroup>
5962
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
6063
<DebugType>full</DebugType>
@@ -66,6 +69,7 @@
6669
<MtouchArch>ARM64</MtouchArch>
6770
<ConsolePause>false</ConsolePause>
6871
<CodesignKey>iPhone Developer</CodesignKey>
72+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
6973
</PropertyGroup>
7074
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' ">
7175
<DebugType>full</DebugType>
@@ -79,6 +83,7 @@
7983
<BuildIpa>true</BuildIpa>
8084
<CodesignProvision>Automatic:AdHoc</CodesignProvision>
8185
<CodesignKey>iPhone Distribution</CodesignKey>
86+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8287
</PropertyGroup>
8388
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|iPhone' ">
8489
<DebugType>full</DebugType>
@@ -91,6 +96,7 @@
9196
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
9297
<CodesignProvision>Automatic:AppStore</CodesignProvision>
9398
<CodesignKey>iPhone Distribution</CodesignKey>
99+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
94100
</PropertyGroup>
95101
<ItemGroup>
96102
<Reference Include="System" />

Examples/XamarinForms/XFSample/XFSample.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66

7+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
8+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9+
</PropertyGroup>
10+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
11+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
12+
</PropertyGroup>
713
<ItemGroup>
814
<None Remove=".DS_Store" />
915
</ItemGroup>

Examples/XamarinForms/iOS/XFSample.iOS.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<MtouchArch>x86_64</MtouchArch>
3030
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
3131
<DeviceSpecificBuild>false</DeviceSpecificBuild>
32+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3233
</PropertyGroup>
3334
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
3435
<DebugType>pdbonly</DebugType>
@@ -43,6 +44,7 @@
4344
<MtouchLink>SdkOnly</MtouchLink>
4445
<MtouchArch>ARM64</MtouchArch>
4546
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
47+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4648
</PropertyGroup>
4749
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
4850
<DebugType>pdbonly</DebugType>
@@ -56,6 +58,7 @@
5658
<MtouchLink>None</MtouchLink>
5759
<MtouchArch>x86_64</MtouchArch>
5860
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
61+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5962
</PropertyGroup>
6063
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
6164
<DebugSymbols>true</DebugSymbols>
@@ -77,6 +80,7 @@
7780
<MtouchLink>SdkOnly</MtouchLink>
7881
<MtouchArch>ARM64</MtouchArch>
7982
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
83+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8084
</PropertyGroup>
8185
<ItemGroup>
8286
<Reference Include="System" />

MAUI/.config/dotnet-tools.json

-12
This file was deleted.

MAUI/Directory.Build.props

-5
This file was deleted.

MAUI/PSPDFKit.MAUI.MacCatalyst.Instant/PSPDFKit.MAUI.MacCatalyst.Instant.csproj

-55
This file was deleted.

MAUI/PSPDFKit.MAUI.MacCatalyst.Model/PSPDFKit.MAUI.MacCatalyst.Model.csproj

-61
This file was deleted.

MAUI/PSPDFKit.MAUI.MacCatalyst.UI/PSPDFKit.MAUI.MacCatalyst.UI.csproj

-65
This file was deleted.

MAUI/PSPDFKit.MAUI.iOS.Instant/Metadata.cs

-4
This file was deleted.

MAUI/PSPDFKit.MAUI.iOS.Instant/PSPDFKit.MAUI.iOS.Instant.csproj

-48
This file was deleted.

MAUI/PSPDFKit.MAUI.iOS.Model/Metadata.cs

-4
This file was deleted.

0 commit comments

Comments
 (0)