I18NCommander/I18N Commander/UI MAUI/UI MAUI.csproj

53 lines
2.4 KiB
XML
Raw Normal View History

2022-08-08 19:18:39 +00:00
<Project Sdk="Microsoft.NET.Sdk.Razor">
2022-08-06 21:48:23 +00:00
<PropertyGroup>
<TargetFrameworks>net6.0-android;net6.0-ios;net6.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net6.0-windows10.0.19041.0</TargetFrameworks>
2022-08-14 18:07:02 +00:00
<OutputType>Exe</OutputType>
2022-08-08 19:18:39 +00:00
<AssemblyName>I18N Commander</AssemblyName>
2022-08-06 21:48:23 +00:00
<RootNamespace>UI_MAUI</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
2022-08-08 19:18:39 +00:00
<EnableDefaultCssItems>false</EnableDefaultCssItems>
2022-08-17 18:57:59 +00:00
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
2022-08-06 21:48:23 +00:00
<!-- Display name -->
<ApplicationTitle>I18N Commander</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>org.tsommer.i18n-commander</ApplicationId>
<ApplicationIdGuid>6D8A5F75-4C32-4807-AC75-CD934671D139</ApplicationIdGuid>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">23.0</SupportedOSPlatformVersion>
2022-08-06 21:48:23 +00:00
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\app.svg" />
2022-08-06 21:48:23 +00:00
<!-- Splash Screen -->
2022-08-13 15:34:48 +00:00
<MauiSplashScreen Include="Resources\Splash\splash.svg" BaseSize="128,128" />
2022-08-06 21:48:23 +00:00
<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />
<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
2022-08-17 18:57:59 +00:00
<ItemGroup>
<ProjectReference Include="..\DataModel\DataModel.csproj" />
<ProjectReference Include="..\Processor\Processor.csproj" />
</ItemGroup>
2022-08-06 21:48:23 +00:00
</Project>