Skip to content

Commit 6b9578d

Browse files
test net9 upgrade
1 parent 6827d03 commit 6b9578d

4 files changed

Lines changed: 25 additions & 25 deletions

File tree

TransactionMobile.Maui.BusinessLogic.Tests/TransactionMobile.Maui.BusinessLogic.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</PropertyGroup>-->
1515

1616
<PropertyGroup>
17-
<TargetFrameworks>net8.0;</TargetFrameworks>
17+
<TargetFrameworks>net9.0;</TargetFrameworks>
1818
<DebugType>None</DebugType>
1919
</PropertyGroup>
2020

TransactionMobile.Maui.BusinessLogic/TransactionMobile.Maui.BusinessLogic.csproj

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

33
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
4-
<TargetFrameworks>net8.0;net8.0-android</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net9.0-android</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
8-
<TargetFrameworks>net8.0;net8.0-android;net8.0-windows10.0.19041.0</TargetFrameworks>
8+
<TargetFrameworks>net9.0;net9.0-android;net9.0-windows10.0.19041.0</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<!-- macOS-only: Android + iOS + MacCatalyst -->
1212
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
13-
<TargetFrameworks>net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
13+
<TargetFrameworks>net9.0;net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
1414
</PropertyGroup>
1515

16-
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0-maccatalyst'">
16+
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0-maccatalyst'">
1717
<RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers>
1818
</PropertyGroup>
1919

@@ -31,7 +31,7 @@
3131
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
3232
</PropertyGroup>
3333

34-
<PropertyGroup Condition="$(TargetFramework) == 'net8.0'">
34+
<PropertyGroup Condition="$(TargetFramework) == 'net9.0'">
3535
<DefineConstants>$(DefineConstants);NET8_TARGET</DefineConstants>
3636
</PropertyGroup>
3737

@@ -54,37 +54,37 @@
5454
<PackageReference Include="MetroLog.Maui" Version="2.1.0" />
5555
</ItemGroup>
5656

57-
<ItemGroup Condition="'$(TargetFramework)' != 'net8.0-ios'">
57+
<ItemGroup Condition="'$(TargetFramework)' != 'net9.0-ios'">
5858
<PackageReference Include="Microsoft.AppCenter" Version="5.0.7" />
5959
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="5.0.7" />
6060
</ItemGroup>
6161

62-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-android'">
62+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-android'">
6363
<PackageReference Include="Microcharts.Maui">
6464
<Version>1.0.0</Version>
6565
</PackageReference>
6666
</ItemGroup>
6767

68-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-ios'">
68+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-ios'">
6969
<PackageReference Include="Microcharts.Maui">
7070
<Version>1.0.0</Version>
7171
</PackageReference>
7272
</ItemGroup>
7373

74-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-maccatalyst'">
74+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-maccatalyst'">
7575
<PackageReference Include="Microcharts.Maui">
7676
<Version>1.0.0</Version>
7777
</PackageReference>
7878
</ItemGroup>
7979

80-
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-windows10.0.19041.0'">
80+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-windows10.0.19041.0'">
8181
<PackageReference Include="Microcharts.Maui">
8282
<Version>1.0.0</Version>
8383
</PackageReference>
8484
</ItemGroup>
8585

8686

87-
<ItemGroup Condition="'$(TargetFramework)' != 'net8.0'">
87+
<ItemGroup Condition="'$(TargetFramework)' != 'net9.0'">
8888
<PackageReference Update="Microsoft.Maui.Controls" Version="8.0.14" />
8989
<PackageReference Update="Microsoft.Maui.Controls.Compatibility" Version="8.0.14" />
9090
</ItemGroup>

TransactionMobile.Maui.UiTests/TransactionMobile.Maui.UiTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<IsTestProject>true</IsTestProject>
77
<DebugType>Full</DebugType>

TransactionMobile.Maui/TransactionMobile.Maui.csproj

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

33
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
4-
<TargetFrameworks>net8.0-android</TargetFrameworks>
4+
<TargetFrameworks>net9.0-android</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
8-
<TargetFrameworks>net8.0-android;net8.0-windows10.0.19041.0</TargetFrameworks>
8+
<TargetFrameworks>net9.0-android;net9.0-windows10.0.19041.0</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<!-- macOS-only: Android + iOS + MacCatalyst -->
1212
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
13-
<TargetFrameworks>net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
13+
<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
1414
</PropertyGroup>
1515

16-
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0-maccatalyst'">
16+
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0-maccatalyst'">
1717
<RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers>
1818
</PropertyGroup>
1919

@@ -265,32 +265,32 @@
265265
<RuntimeIdentifiers>maccatalyst-x64</RuntimeIdentifiers>
266266
</PropertyGroup>
267267

268-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'">
268+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'">
269269
<AndroidPackageFormat>apk</AndroidPackageFormat>
270270
</PropertyGroup>
271271

272-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-ios|AnyCPU'">
272+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-ios|AnyCPU'">
273273
<MtouchLink>None</MtouchLink>
274274
<PublishTrimmed>true</PublishTrimmed>
275275
</PropertyGroup>
276-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-ios|AnyCPU'">
276+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-ios|AnyCPU'">
277277
<MtouchLink>SdkOnly</MtouchLink>
278278
<PublishTrimmed>true</PublishTrimmed>
279279
</PropertyGroup>
280-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-windows10.0.19041.0|AnyCPU'">
280+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-windows10.0.19041.0|AnyCPU'">
281281
<DefineConstants>$(DefineConstants)TRACE</DefineConstants>
282282
</PropertyGroup>
283-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-windows10.0.19041.0|AnyCPU'">
283+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-windows10.0.19041.0|AnyCPU'">
284284
<DefineConstants>$(DefineConstants)TRACE</DefineConstants>
285285
<Optimize>False</Optimize>
286286
</PropertyGroup>
287-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'">
287+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'">
288288
<Optimize>False</Optimize>
289289
</PropertyGroup>
290-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-maccatalyst|AnyCPU'">
290+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-maccatalyst|AnyCPU'">
291291
<Optimize>False</Optimize>
292292
</PropertyGroup>
293-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-ios15.4|AnyCPU'">
293+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-ios15.4|AnyCPU'">
294294
<Optimize>False</Optimize>
295295
</PropertyGroup>
296296

0 commit comments

Comments
 (0)