* Get the basics working
* Port some more stuff
* Okay, basic selection stuff is ported
* Add new cover1 image
* Fix EmptyView
* Fix grouping
* Wire up scroll commands
* Remove commented code
Co-authored-by: Jonathan Dick <jondick@gmail.com>
* Hide Placeholder when Text is set from code
* - fix hide placeholder and wire up changed event
* - fix setting editor on text change and add tests
* - fix spacing on label
* - remove method
* [build] Add maui-blazor to vs-workload.props
The `@(ComponentResources)` item in the vs-workload.props file is used
by the [`<GenerateVisualStudioWorkload/>` task][0] to fill out missing
information when generating Visual Studio installer manifests for Mauis
.NET workloads. Whenever a new workload is added to the
[`WorkloadManifest.json` file][1], a corresponding entry must be added
to `vs-workload.template.props` or the generated VS manifests will
contain incomplete information.
[0]: 5aa9d32c0f/src/Microsoft.DotNet.Build.Tasks.Workloads/src/GenerateVisualStudioWorkload.cs (L18)
[1]: ed9088699a/src/Workload/Microsoft.NET.Sdk.Maui/WorkloadManifest.in.json
* Update eng/automation/vs-workload.template.props
Co-authored-by: Eilon Lipton <Eilon@users.noreply.github.com>
Co-authored-by: Eilon Lipton <Eilon@users.noreply.github.com>
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.232 -> To Version 12.0.101-preview.10.243
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
* Update dependencies from https://github.com/xamarin/xamarin-macios build 20211019.9
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.175 -> To Version 12.0.101-preview.10.183
* Update dependencies from https://github.com/xamarin/xamarin-macios build 20211019.21
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.175 -> To Version 12.0.101-preview.10.198
* Update dependencies from https://github.com/xamarin/xamarin-macios build 20211019.29
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.175 -> To Version 12.0.101-preview.10.204
* Update dependencies from https://github.com/xamarin/xamarin-macios build 20211021.3
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.175 -> To Version 12.0.101-preview.10.215
* Update dependencies from https://github.com/xamarin/xamarin-macios build 20211021.28
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.175 -> To Version 12.0.101-preview.10.225
* Update dependencies from https://github.com/xamarin/xamarin-macios build 20211022.7
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.175 -> To Version 12.0.101-preview.10.229
* Update dependencies from https://github.com/xamarin/xamarin-macios build 20211022.10
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.175 -> To Version 12.0.101-preview.10.232
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Matthew Leibowitz <mattleibow@live.com>
* Update dependencies from https://github.com/dotnet/emsdk build 20211018.2
Microsoft.NET.Workload.Emscripten.Manifest-6.0.100
From Version 6.0.0-rtm.21514.1 -> To Version 6.0.0
* Update dependencies from https://github.com/dotnet/emsdk build 20211020.1
Microsoft.NET.Workload.Emscripten.Manifest-6.0.100
From Version 6.0.0-rtm.21514.1 -> To Version 6.0.0
* Update dependencies from https://github.com/dotnet/emsdk build 20211020.3
Microsoft.NET.Workload.Emscripten.Manifest-6.0.100
From Version 6.0.0-rtm.21514.1 -> To Version 6.0.0
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Matthew Leibowitz <mattleibow@live.com>
* Specify the minimum versions of the platforms
* maccat 13.1
* win10
* Merge all the version numbers
* ws
* not needed as winui controls these numbers
* seems this is not real
* we are going global!
Microsoft.macOS.Sdk , Microsoft.MacCatalyst.Sdk , Microsoft.iOS.Sdk , Microsoft.tvOS.Sdk
From Version 12.0.101-preview.10.167 -> To Version 12.0.101-preview.10.175
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
* Apply TextTransform for Controls Label; fixes#2969
* Add device tests for Label.TextTransform
* Fix cross-threading issue on iOS
* Ensure remaps are called
Fixes: https://github.com/dotnet/sdk/issues/21845
If you create a `net6.0` class library with `UseMaui=true`, `dotnet
test` fails with:
Testhost process exited with error: It was not possible to find any compatible framework version
The framework 'Microsoft.Maui.Core', version '**FromWorkload**' (x64) was not found.
@dsplaisted suggested adding `%(RuntimePackAlwaysCopyLocal)` to any
`@(KnownFrameworkReference)` that is meant for `net6.0`:
https://github.com/dotnet/sdk/issues/21845#issuecomment-944534166
If a class library does not have a platform specified, then the
`Microsoft.Maui.*.any` packs are brought in. These packs need
`%(RuntimePackAlwaysCopyLocal)` for `dotnet test` to work.
I added a sample project that appears to work now:
> .\bin\dotnet\dotnet.exe test .\src\Controls\samples\Controls.Sample.Tests\Controls.Sample.Tests.csproj
Determining projects to restore...
Restored C:\src\maui\src\Controls\samples\Controls.Sample.Tests\Controls.Sample.Tests.csproj (in 1.89 sec).
You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
Controls.Sample.Tests -> C:\src\maui\src\Controls\samples\Controls.Sample.Tests\bin\Debug\net6.0\Controls.Sample.Tests.dll
Test run for C:\src\maui\src\Controls\samples\Controls.Sample.Tests\bin\Debug\net6.0\Controls.Sample.Tests.dll (.NETCoreApp,Version=v6.0)
Microsoft (R) Test Execution Command Line Tool Version 17.0.0
Copyright (c) Microsoft Corporation. All rights reserved.
Starting test execution, please wait...
A total of 1 test files matched the specified pattern.
Passed! - Failed: 0, Passed: 1, Skipped: 0, Total: 1, Duration: < 1 ms - Controls.Sample.Tests.dll (net6.0)
Microsoft.Android.Sdk.Windows
From Version 31.0.101-preview.10.39 -> To Version 31.0.101-preview.10.41
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>