forked from StockSharp/StockSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon_target_maui.props
More file actions
15 lines (14 loc) · 1.38 KB
/
common_target_maui.props
File metadata and controls
15 lines (14 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="common_target_common.props" />
<PropertyGroup>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<StockSharpTargets Condition="'$(StockSharpTargets)' == ''">$(NetTfm)-android;$(NetTfm)-ios</StockSharpTargets>
<StockSharpTargets Condition="'$(StockSharpTargets)' == '$(NetTfm)-android;$(NetTfm)-ios' and $([MSBuild]::IsOSPlatform('windows'))">$(StockSharpTargets);$(NetTfm)-windows10.0.19041.0</StockSharpTargets>
<TargetFrameworks>$(StockSharpTargets)</TargetFrameworks>
<SupportedOSPlatformVersion Condition="'$(SupportedOSPlatformVersion)' == '' and $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="'$(SupportedOSPlatformVersion)' == '' and $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">24.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="'$(SupportedOSPlatformVersion)' == '' and $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.19041.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="'$(TargetPlatformMinVersion)' == '' and $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.19041.0</TargetPlatformMinVersion>
</PropertyGroup>
</Project>