File tree 2 files changed +11
-7
lines changed
2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 20
20
- name : Setup .NET
21
21
uses : actions/setup-dotnet@v3
22
22
with :
23
- dotnet-version : 7 .0.x
23
+ dotnet-version : 8 .0.x
24
24
- name : Set up JDK 11
25
25
uses : actions/setup-java@v3
26
26
with :
51
51
- name : Setup .NET
52
52
uses : actions/setup-dotnet@v3
53
53
with :
54
- dotnet-version : 7 .0.x
54
+ dotnet-version : 8 .0.x
55
55
- name : Install .NET MAUI
56
56
run : |
57
57
dotnet nuget locals all --clear
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net7.0;net7.0-android33.0;net7.0-ios;net7.0-maccatalyst</TargetFrameworks >
5
- <TargetFrameworks Condition =" $([MSBuild]::IsOSPlatform('windows'))" >$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks >
4
+ <TargetFrameworks >net7.0;net7.0-android33.0;net7.0-ios;net7.0-maccatalyst;net8.0;net8.0-android34.0;net8.0-ios;net8.0-maccatalyst </TargetFrameworks >
5
+ <TargetFrameworks Condition =" $([MSBuild]::IsOSPlatform('windows'))" >$(TargetFrameworks);net7.0-windows10.0.19041.0;net8.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
7
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
8
8
<UseMaui >true</UseMaui >
30
30
</PropertyGroup >
31
31
32
32
<ItemGroup >
33
- <PackageReference Include =" OxyPlot.Core" Version =" 2.1.2" />
34
- <PackageReference Include =" SkiaSharp.HarfBuzz" Version =" 2.88.6" />
35
- <PackageReference Include =" SkiaSharp.Views.Maui.Controls" Version =" 2.88.6" />
33
+ <PackageReference Include =" OxyPlot.Core" Version =" 2.1.2" />
34
+ <PackageReference Include =" SkiaSharp.HarfBuzz" Version =" 2.88.6" />
35
+ <PackageReference Include =" SkiaSharp.Views.Maui.Controls" Version =" 2.88.6" />
36
+ </ItemGroup >
37
+
38
+ <ItemGroup Condition =" $(TargetFramework.StartsWith('net8.0')) " >
39
+ <PackageReference Include =" Microsoft.Maui.Controls" Version =" 8.0.3" />
36
40
</ItemGroup >
37
41
38
42
<ItemGroup >
You can’t perform that action at this time.
0 commit comments