|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks> |
5 | | - <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>net9.0;net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
| 5 | + <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks> |
6 | 6 | <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> |
7 | | - <!-- <TargetFrameworks>$(TargetFrameworks);net8.0-tizen</TargetFrameworks> --> |
| 7 | + <!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> --> |
8 | 8 |
|
9 | 9 | <!-- Note for MacCatalyst: |
10 | 10 | The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64. |
|
13 | 13 | either BOTH runtimes must be indicated or ONLY macatalyst-x64. --> |
14 | 14 | <!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> --> |
15 | 15 |
|
16 | | - <OutputType Condition="'$(TargetFramework)'!='net8.0'">Exe</OutputType> |
| 16 | + <OutputType Condition="'$(TargetFramework)'!='net9.0'">Exe</OutputType> |
17 | 17 | <RootNamespace>PassXYZ.Vault</RootNamespace> |
18 | 18 | <UseMaui>true</UseMaui> |
19 | | - <MauiVersion>8.0.100</MauiVersion> |
| 19 | + <MauiVersion>9.0.110</MauiVersion> |
20 | 20 | <SingleProject>true</SingleProject> |
21 | 21 | <ImplicitUsings>enable</ImplicitUsings> |
22 | 22 | <Nullable>enable</Nullable> |
|
47 | 47 | <GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate> |
48 | 48 | <HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks> |
49 | 49 | <EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization> |
50 | | - <AssemblyVersion>2.2.0.0</AssemblyVersion> |
51 | | - <FileVersion>2.2.0.0</FileVersion> |
| 50 | + <AssemblyVersion>2.3.0.0</AssemblyVersion> |
| 51 | + <FileVersion>2.3.0.0</FileVersion> |
52 | 52 | <AppxPackageSigningEnabled>False</AppxPackageSigningEnabled> |
53 | 53 | <AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm> |
54 | 54 | </PropertyGroup> |
55 | 55 |
|
56 | | - <PropertyGroup Condition="'$(TargetFramework)'=='net8.0-ios'"> |
| 56 | + <PropertyGroup Condition="'$(TargetFramework)'=='net9.0-ios'"> |
57 | 57 | <CodesignKey>Apple Development: Created via API (X8CY3Q3W4V)</CodesignKey> |
58 | 58 | <CodesignProvision>VS: com.passxyz.vault2 Development</CodesignProvision> |
59 | 59 | </PropertyGroup> |
60 | 60 |
|
61 | | - <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'"> |
| 61 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android|AnyCPU'"> |
62 | 62 | <AndroidKeyStore>False</AndroidKeyStore> |
63 | 63 | </PropertyGroup> |
64 | 64 |
|
65 | | - <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'"> |
| 65 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'"> |
66 | 66 | <AndroidKeyStore>False</AndroidKeyStore> |
67 | 67 | <AndroidPackageFormat>apk</AndroidPackageFormat> |
68 | 68 | <DebugSymbols>True</DebugSymbols> |
|
144 | 144 | <PackageReference Include="Camera.MAUI.ZXing" Version="1.0.0" /> |
145 | 145 | <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" /> |
146 | 146 | <PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" /> |
147 | | - <PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" /> |
| 147 | + <PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" /> |
148 | 148 | <PackageReference Include="EJL.MauiHybridWebView" Version="1.0.0-preview4" /> |
149 | | - <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> |
| 149 | + <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.9" /> |
150 | 150 | <PackageReference Include="Plugin.Fingerprint" Version="3.0.0-beta.1" /> |
151 | 151 | <PackageReference Include="Camera.MAUI" Version="1.5.1" /> |
152 | 152 | </ItemGroup> |
|
0 commit comments