File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 4343 - name : Setup .NET
4444 uses : actions/setup-dotnet@v4
4545 with :
46- dotnet-version : 9 .0.x
46+ dotnet-version : 10 .0.x
4747 - name : Configure arm64 packages
4848 if : matrix.runtime == 'linux-arm64'
4949 run : |
Original file line number Diff line number Diff line change 1818 - name : Set up .NET
1919 uses : actions/setup-dotnet@v4
2020 with :
21- dotnet-version : 9 .0.x
21+ dotnet-version : 10 .0.x
2222
2323 - name : Run formatting check
2424 run : dotnet format --verify-no-changes
Original file line number Diff line number Diff line change 55
66## How to build this project manually
77
8- 1 . Make sure [ .NET SDK 9 ] ( https://dotnet.microsoft.com/en-us/download ) is installed on your machine.
8+ 1 . Make sure [ .NET SDK 10 ] ( https://dotnet.microsoft.com/en-us/download ) is installed on your machine.
992 . Clone this project
10103 . Run the follow command under the project root dir
1111``` sh
Original file line number Diff line number Diff line change 11{
22 "sdk" : {
3- "version" : " 9 .0.0" ,
3+ "version" : " 10 .0.0" ,
44 "rollForward" : " latestMajor" ,
55 "allowPrerelease" : false
66 }
7- }
7+ }
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
33 <OutputType >WinExe</OutputType >
4- <TargetFramework >net9 .0</TargetFramework >
4+ <TargetFramework >net10 .0</TargetFramework >
55 <ApplicationManifest >App.manifest</ApplicationManifest >
66 <ApplicationIcon >App.ico</ApplicationIcon >
77 <Version >$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)\\..\\VERSION"))</Version >
2424 <TrimMode >link</TrimMode >
2525 </PropertyGroup >
2626
27+ <PropertyGroup Condition =" $([MSBuild]::IsOSPlatform('OSX'))" >
28+ <SupportedOSPlatformVersion >13.0</SupportedOSPlatformVersion >
29+ </PropertyGroup >
30+
2731 <PropertyGroup Condition =" '$(DisableUpdateDetection)' == 'true'" >
2832 <DefineConstants >$(DefineConstants);DISABLE_UPDATE_DETECTION</DefineConstants >
2933 </PropertyGroup >
6165 <TrimmerRootAssembly Include =" SourceGit" />
6266 <TrimmerRootAssembly Include =" Avalonia.Themes.Fluent" />
6367 </ItemGroup >
64-
65- <ItemGroup Condition =" $([MSBuild]::IsOSPlatform('OSX'))" >
66- <LinkerArg Include =" -mmacosx-version-min=11.0" Condition =" '$(Configuration)' == 'Release'" />
67- </ItemGroup >
6868</Project >
You can’t perform that action at this time.
0 commit comments