|
|
|
@ -1,10 +1,8 @@
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
|
|
|
|
<TargetFrameworks>net10.0-android;net10.0-ios;net10.0-maccatalyst</TargetFrameworks>
|
|
|
|
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>
|
|
|
|
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net10.0-windows10.0.19041.0</TargetFrameworks>
|
|
|
|
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
|
|
|
|
|
|
|
|
<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Note for MacCatalyst:
|
|
|
|
<!-- Note for MacCatalyst:
|
|
|
|
The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64.
|
|
|
|
The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64.
|
|
|
|
@ -24,7 +22,7 @@
|
|
|
|
<ApplicationTitle>CommanderApp</ApplicationTitle>
|
|
|
|
<ApplicationTitle>CommanderApp</ApplicationTitle>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- App Identifier -->
|
|
|
|
<!-- App Identifier -->
|
|
|
|
<ApplicationId>com.companyname.mauiapp1</ApplicationId>
|
|
|
|
<ApplicationId>com.companyname.commanderapp</ApplicationId>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Versions -->
|
|
|
|
<!-- Versions -->
|
|
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
|
|
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
|
|
@ -38,7 +36,6 @@
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.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>
|
|
|
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
|
|
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
@ -61,7 +58,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
|
|
|
|
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.8" />
|
|
|
|
<PackageReference Include="Microsoft.Maui.Essentials" Version="$(MauiVersion)" />
|
|
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="10.0.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|
|
|
|
</Project>
|