|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
| 3 | + |
| 4 | + <!--<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
5 | 5 | <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks> |
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);net9.0-tizen</TargetFrameworks> --> |
| 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);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 | + <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))"> |
| 17 | + <TargetFrameworks>net9.0-android</TargetFrameworks> |
| 18 | + </PropertyGroup> |
| 19 | + |
| 20 | + <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))"> |
| 21 | + <TargetFrameworks>net9.0-android;net9.0-windows10.0.19041.0</TargetFrameworks> |
| 22 | + </PropertyGroup> |
| 23 | + |
| 24 | + <!-- macOS-only: Android + iOS + MacCatalyst --> |
| 25 | + <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))"> |
| 26 | + <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
| 27 | + </PropertyGroup> |
| 28 | + |
| 29 | + <!--<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0-maccatalyst'"> |
| 30 | + <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> |
| 31 | + </PropertyGroup>--> |
| 32 | + |
| 33 | + <PropertyGroup> |
16 | 34 | <OutputType>Exe</OutputType> |
17 | 35 | <RootNamespace>TransactionProcessor.Mobile</RootNamespace> |
18 | 36 | <UseMaui>true</UseMaui> |
|
0 commit comments