Merge pull request #89 from dotnet/fix-ios-catalyst-manifiest

Fix iOS and Mac Catalyst manifiest mistakes
This commit is contained in:
Javier Suárez 2021-11-10 20:45:43 +01:00 коммит произвёл GitHub
Родитель 3afbf8619f fdc0092b13
Коммит 04611f1b7b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -1,5 +1,6 @@
using Foundation; using Foundation;
using Microsoft.Maui; using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace GraphicsControls.Sample namespace GraphicsControls.Sample
{ {

Просмотреть файл

@ -2,8 +2,6 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>UIDeviceFamily</key> <key>UIDeviceFamily</key>
<array> <array>
<integer>1</integer> <integer>1</integer>

Просмотреть файл

@ -1,5 +1,6 @@
using Foundation; using Foundation;
using Microsoft.Maui; using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace GraphicsControls.Sample namespace GraphicsControls.Sample
{ {

Просмотреть файл

@ -4,8 +4,6 @@
<dict> <dict>
<key>LSRequiresIPhoneOS</key> <key>LSRequiresIPhoneOS</key>
<true/> <true/>
<key>MinimumOSVersion</key>
<string>10.3.4</string>
<key>UIDeviceFamily</key> <key>UIDeviceFamily</key>
<array> <array>
<integer>1</integer> <integer>1</integer>

Просмотреть файл

@ -4,7 +4,7 @@
<RootNamespace>Microsoft.Maui.Graphics.Controls</RootNamespace> <RootNamespace>Microsoft.Maui.Graphics.Controls</RootNamespace>
<AssemblyName>Microsoft.Maui.Graphics.Controls</AssemblyName> <AssemblyName>Microsoft.Maui.Graphics.Controls</AssemblyName>
<LangVersion>8.0</LangVersion> <LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<UseMaui>true</UseMaui> <UseMaui>true</UseMaui>
<SingleProject>true</SingleProject> <SingleProject>true</SingleProject>
</PropertyGroup> </PropertyGroup>

Просмотреть файл

@ -19,7 +19,6 @@ namespace Microsoft.Maui.Graphics.Controls
public static PropertyMapper<ISlider> PropertyMapper = new PropertyMapper<ISlider>(ViewHandler.Mapper) public static PropertyMapper<ISlider> PropertyMapper = new PropertyMapper<ISlider>(ViewHandler.Mapper)
{ {
[nameof(ISlider.Value)] = ViewHandler.MapInvalidate,
[nameof(ISlider.Value)] = ViewHandler.MapInvalidate, [nameof(ISlider.Value)] = ViewHandler.MapInvalidate,
[nameof(ISlider.ThumbColor)] = ViewHandler.MapInvalidate, [nameof(ISlider.ThumbColor)] = ViewHandler.MapInvalidate,
[nameof(ISlider.MaximumTrackColor)] = ViewHandler.MapInvalidate, [nameof(ISlider.MaximumTrackColor)] = ViewHandler.MapInvalidate,