-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update to .NET 9 * Update for .NET 9 * Update BindableObjectMultiBindExtensionsTests.cs * Update azure-pipelines.yml * Update azure-pipelines.yml * Remove `string` path bindings * Update azure-pipelines.yml * Update BindingHelpers.cs * Fix TypedBinding * Update GesturesExtensionsTests.cs * Revert `Format` method * Revert `Format(int, params object[])` * Allow unsafe code blocks in sample * Enable AOT on Android + Windows Sample * Update CommunityToolkit.Maui.Markup.Sample.csproj * Revert "Update CommunityToolkit.Maui.Markup.Sample.csproj" This reverts commit b20dfc8. * Revert "Enable AOT on Android + Windows Sample" This reverts commit 6293ac0. * Use Syntax Highlighting for code blocks * Update `<WarningsAsErrors>` * Resolve WinRt errors * Remove `Application.Current.MainPage` * Create BindableObjectExtensionsTests.cs * Fix ElementExtensionsTests and DynamicResourceHandlerTests * Resolve AppThemeBinding Tests * Remove `ActivateWindow` * Re-add obsolete BindableObjectExtensions * Update NuGet Packages * `dotnet format` * Update CommunityToolkit.Maui.Markup.Sample.csproj * Add Support for BindingBase.Create * Update Sample * Revert "Update Sample" This reverts commit d326f04. * Revert "Add Support for BindingBase.Create" This reverts commit 641b7ef. * Update MVVM Toolkit * Revert "Update MVVM Toolkit" This reverts commit 2c9c914. * Revert * Use `params ReadOnlySpan<T>` * Update ExecuteBindingsBase.cs * Revert Benchmarks * Update Xcode logic * Update azure-pipelines.yml * Update azure-pipelines.yml * Increase to macOS-15 * Fix Hosted Agent Image * Update azure-pipelines.yml * Use `CollectionViewHandler2` and `CarouselViewHandler2` * Use Primary Constructors * Use partial properties * Organize properties * Use Partial Properties * `dotnet format` * Update for .NET 9 GA * Fix sample app error * Update samples/CommunityToolkit.Maui.Markup.Sample/CommunityToolkit.Maui.Markup.Sample.csproj * Update azure-pipelines.yml * Update azure-pipelines.yml * Revert to macOS-14 * Revert "Revert to macOS-14" This reverts commit 8a11480. * Update azure-pipelines.yml
- Loading branch information
1 parent
8ba3464
commit 7a55890
Showing
52 changed files
with
1,063 additions
and
1,257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.203", | ||
"version": "9.0.0", | ||
"rollForward": "latestFeature", | ||
"allowPrerelease": false | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
namespace CommunityToolkit.Maui.Markup.Sample; | ||
|
||
class App : Application | ||
partial class App : Application | ||
{ | ||
readonly AppShell appShell; | ||
|
||
public App(AppShell shell) | ||
{ | ||
Resources = new AppStyles(); | ||
|
||
MainPage = shell; | ||
appShell = shell; | ||
} | ||
|
||
protected override Window CreateWindow(IActivationState? activationState) => new(appShell); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
samples/CommunityToolkit.Maui.Markup.Sample/Pages/NewsDetailPage.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.