Skip to content

Commit

Permalink
fix: bump minimum macOS version for SampleApp
Browse files Browse the repository at this point in the history
```
MacOS/Info.plist : error : The LSMinimumSystemVersion value in the Info.plist (10.11) does not match the SupportedOSPlatformVersion value (10.14) in the project file (if there is no SupportedOSPlatformVersion value in the project file, then a default value has been assumed). Either change the value in the Info.plist to match the SupportedOSPlatformVersion value, or remove the value in the Info.plist (and add a SupportedOSPlatformVersion value to the project file if it doesn't already exist). [/xxx/uno/src/SamplesApp/SamplesApp.netcoremobile/SamplesApp.netcoremobile.csproj::TargetFramework=net7.0-macos]
```
  • Loading branch information
spouliot committed Feb 4, 2023
1 parent ab2ee2a commit c506cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SamplesApp/SamplesApp.netcoremobile/MacOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleVersion</key>
<string>1</string>
<key>LSMinimumSystemVersion</key>
<string>10.11</string>
<string>10.14</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleInfoDictionaryVersion</key>
Expand Down

0 comments on commit c506cde

Please sign in to comment.