feature: change minimal system requirement for macOS to 11.0 (#275)

This commit is contained in:
leo 2024-07-22 18:24:08 +08:00
parent 888bf54303
commit d8af6bd75f
No known key found for this signature in database
2 changed files with 29 additions and 25 deletions

View file

@ -11,7 +11,7 @@
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>SOURCE_GIT_VERSION.0</string> <string>SOURCE_GIT_VERSION.0</string>
<key>LSMinimumSystemVersion</key> <key>LSMinimumSystemVersion</key>
<string>10.12</string> <string>11.0</string>
<key>LSEnvironment</key> <key>LSEnvironment</key>
<dict> <dict>
<key>PATH</key> <key>PATH</key>

View file

@ -44,4 +44,8 @@
<TrimmerRootAssembly Include="SourceGit" /> <TrimmerRootAssembly Include="SourceGit" />
<TrimmerRootAssembly Include="Avalonia.Themes.Fluent" /> <TrimmerRootAssembly Include="Avalonia.Themes.Fluent" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<LinkerArg Include="-mmacosx-version-min=11.0" Condition="$([MSBuild]::IsOSPlatform('OSX'))"/>
</ItemGroup>
</Project> </Project>