Skip to content

Commit 0a5b5b3

Browse files
committed
porting of Maui sample project to .net 9
1 parent 543f0aa commit 0a5b5b3

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed
Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<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>
66
<!-- 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> -->
88

9-
<UseMaui>true</UseMaui>
9+
<UseMaui>true</UseMaui>
1010
<SingleProject>true</SingleProject>
1111
<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>
2727
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
2828
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
2929
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
3030
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
3131
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
3232
</PropertyGroup>
33-
33+
3434

3535
<ItemGroup>
3636
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
3737
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
3838
</ItemGroup>
3939

4040
<ItemGroup>
41-
<ProjectReference Include="..\ReactorData\ReactorData.csproj" />
41+
<ProjectReference Include="..\ReactorData\ReactorData.csproj" />
4242
</ItemGroup>
4343

4444
</Project>

0 commit comments

Comments
 (0)