|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 |
| - <TargetFrameworks>net8.0-ios;net8.0-maccatalyst</TargetFrameworks> |
| 4 | + <TargetFrameworks>net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
| 5 | + |
5 | 6 | <!-- Note for MacCatalyst:
|
6 | 7 | The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64.
|
7 | 8 | When specifying both architectures, use the plural <RuntimeIdentifiers> instead of the singular <RuntimeIdentifier>.
|
|
25 | 26 | <!-- Versions -->
|
26 | 27 | <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
27 | 28 | <ApplicationVersion>1</ApplicationVersion>
|
28 |
| - <MtouchLink>None</MtouchLink> |
29 |
| - |
30 |
| - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">13.0</SupportedOSPlatformVersion> |
31 |
| - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> |
| 29 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion> |
| 30 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</SupportedOSPlatformVersion> |
32 | 31 | </PropertyGroup>
|
33 | 32 |
|
34 | 33 | <ItemGroup>
|
|
51 | 50 |
|
52 | 51 | <ItemGroup>
|
53 | 52 | <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
|
54 |
| - <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> |
55 |
| - <BundleResource Include="Platforms\iOS\GoogleService-Info.plist"> |
56 |
| - <Link>GoogleService-Info.plist</Link> |
57 |
| - </BundleResource> |
| 53 | + <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0-rc.2.24473.5" /> |
58 | 54 | </ItemGroup>
|
59 | 55 |
|
60 | 56 | <ItemGroup>
|
61 | 57 | <ProjectReference Include="..\macios\Firebase.MaciOS.Binding\Firebase.MaciOS.Binding.csproj" />
|
62 | 58 | </ItemGroup>
|
63 | 59 |
|
64 | 60 | <ItemGroup>
|
| 61 | + <BundleResource Include="Platforms\iOS\GoogleService-Info.plist"> |
| 62 | + <Link>GoogleService-Info.plist</Link> |
| 63 | + </BundleResource> |
65 | 64 | <!-- Exclude when running a generic build in CI where provisioning profiles aren't configured -->
|
66 | 65 | <CustomEntitlements Include="aps-environment" Type="string" Value="development" Condition="'$(Configuration)' == 'Debug' and '$(CI)' != 'true'" />
|
67 | 66 | <CustomEntitlements Include="aps-environment" Type="string" Value="production" Condition="'$(Configuration)' == 'Release' and '$(CI)' != 'true'" />
|
|
0 commit comments