|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks> |
5 | | - <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>net9.0;net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
| 5 | + <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks> |
6 | 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);net8.0-tizen</TargetFrameworks> --> |
| 7 | + <!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> --> |
8 | 8 |
|
9 | | - <UseMaui>true</UseMaui> |
| 9 | + <UseMaui>true</UseMaui> |
10 | 10 | <SingleProject>true</SingleProject> |
11 | 11 | <Nullable>enable</Nullable> |
12 | | - <Version>0.0.1</Version> |
13 | | - <Authors>adospace</Authors> |
14 | | - <Description>ReactorData.Maui is the .NET MAUI integration for ReactorData.</Description> |
15 | | - <Copyright>Adolfo Marinucci</Copyright> |
16 | | - <PackageProjectUrl>https://github.com/adospace/reactor-data</PackageProjectUrl> |
17 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
18 | | - <RepositoryUrl>https://github.com/adospace/reactor-data</RepositoryUrl> |
19 | | - <PackageTags>database storage persistance mvu UI MAUI .NET</PackageTags> |
20 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
21 | | - <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
22 | | - <PackageId>ReactorData.Maui</PackageId> |
23 | | - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
24 | | - <NoWarn>RS1036,NU1903,NU1902,NU1901</NoWarn> |
25 | | - |
26 | | - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> |
| 12 | + <Version>0.0.1</Version> |
| 13 | + <Authors>adospace</Authors> |
| 14 | + <Description>ReactorData.Maui is the .NET MAUI integration for ReactorData.</Description> |
| 15 | + <Copyright>Adolfo Marinucci</Copyright> |
| 16 | + <PackageProjectUrl>https://github.com/adospace/reactor-data</PackageProjectUrl> |
| 17 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 18 | + <RepositoryUrl>https://github.com/adospace/reactor-data</RepositoryUrl> |
| 19 | + <PackageTags>database storage persistance mvu UI MAUI .NET</PackageTags> |
| 20 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 21 | + <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
| 22 | + <PackageId>ReactorData.Maui</PackageId> |
| 23 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 24 | + <NoWarn>RS1036,NU1903,NU1902,NU1901</NoWarn> |
| 25 | + |
| 26 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> |
27 | 27 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> |
28 | 28 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion> |
29 | 29 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> |
30 | 30 | <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> |
31 | 31 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> |
32 | 32 | </PropertyGroup> |
33 | | - |
| 33 | + |
34 | 34 |
|
35 | 35 | <ItemGroup> |
36 | 36 | <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" /> |
37 | 37 | <PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" /> |
38 | 38 | </ItemGroup> |
39 | 39 |
|
40 | 40 | <ItemGroup> |
41 | | - <ProjectReference Include="..\ReactorData\ReactorData.csproj" /> |
| 41 | + <ProjectReference Include="..\ReactorData\ReactorData.csproj" /> |
42 | 42 | </ItemGroup> |
43 | 43 |
|
44 | 44 | </Project> |
0 commit comments