|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFrameworks>net9.0-android;net9.0-ios</TargetFrameworks>
|
|
|
|
<TargetFrameworks>net9.0-android;net9.0-ios</TargetFrameworks>
|
|
|
|
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>
|
|
|
|
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.26100.0</TargetFrameworks>
|
|
|
|
|
|
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<RootNamespace>FruitBankHybrid</RootNamespace>
|
|
|
|
<RootNamespace>FruitBankHybrid</RootNamespace>
|
|
|
|
@ -16,7 +16,7 @@
|
|
|
|
<ApplicationTitle>FruitBank Measuring</ApplicationTitle>
|
|
|
|
<ApplicationTitle>FruitBank Measuring</ApplicationTitle>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- App Identifier -->
|
|
|
|
<!-- App Identifier -->
|
|
|
|
<ApplicationId>com.companyname.blazorapp.1</ApplicationId>
|
|
|
|
<ApplicationId>com.mango.fruitbank</ApplicationId>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Versions -->
|
|
|
|
<!-- Versions -->
|
|
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
|
|
@ -27,9 +27,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</SupportedOSPlatformVersion>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</SupportedOSPlatformVersion>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">33.0</SupportedOSPlatformVersion>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">29.0</SupportedOSPlatformVersion>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
|
|
|
|
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
|
|
|
|
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
|
|
|
|
|
|
|
|
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
|
|
|
|
|
|
|
|
<AppxPackageSigningEnabled>False</AppxPackageSigningEnabled>
|
|
|
|
|
|
|
|
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
|
|
|
|
|
|
|
|
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
|
|
|
|
|
|
|
|
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
|
|
|
|
|
|
|
|
<GenerateTestArtifacts>True</GenerateTestArtifacts>
|
|
|
|
|
|
|
|
<HoursBetweenUpdateChecks>24</HoursBetweenUpdateChecks>
|
|
|
|
|
|
|
|
<WindowsPackageType>MSIX</WindowsPackageType>
|
|
|
|
</PropertyGroup>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -45,6 +53,19 @@
|
|
|
|
<UseInterpreter>true</UseInterpreter>
|
|
|
|
<UseInterpreter>true</UseInterpreter>
|
|
|
|
</PropertyGroup>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'">
|
|
|
|
|
|
|
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
|
|
|
|
|
|
|
<AndroidUseAapt2>True</AndroidUseAapt2>
|
|
|
|
|
|
|
|
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
|
|
|
|
|
|
|
|
<DebugSymbols>True</DebugSymbols>
|
|
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android|AnyCPU'">
|
|
|
|
|
|
|
|
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
|
|
|
|
|
|
|
|
<AndroidUseAapt2>True</AndroidUseAapt2>
|
|
|
|
|
|
|
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
|
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<!-- App Icon -->
|
|
|
|
<!-- App Icon -->
|
|
|
|
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
|
|
|
|
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
|
|
|
|
|