-
-
Notifications
You must be signed in to change notification settings - Fork 967
feat!(threading): Use ValueTask for potentially synchronous operations
#1693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pomianowski
wants to merge
10
commits into
main
Choose a base branch
from
feature/use-value-tasks
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
3f6cd92
feat: Migrate to SLNX
pomianowski a4c0eeb
feat!(threading): Add ValueTask
pomianowski c7bdb01
fix: Update declarations
pomianowski aa22b24
fix: Update tasks
pomianowski 55dd471
fix: Update content dialog
pomianowski ef1ffac
fix: update content presenter
pomianowski e111b6f
feat: Add Cancellation token
pomianowski 6004149
Update Directory.Packages.props
pomianowski e6e9290
Update .github/workflows/wpf-ui-cd-extension.yaml
pomianowski 65bb9ea
fix: Update content presenter
pomianowski File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
| <s:Boolean x:Key="/Default/UserDictionary/Words/=snackbar/@EntryIndexedValue">True</s:Boolean> | ||
| <s:Boolean x:Key="/Default/UserDictionary/Words/=Snackbars/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary> | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,102 @@ | ||
| <Solution> | ||
| <Configurations> | ||
| <Platform Name="Any CPU" /> | ||
| <Platform Name="arm64" /> | ||
| <Platform Name="x64" /> | ||
| <Platform Name="x86" /> | ||
| </Configurations> | ||
| <Folder Name="/Samples/"> | ||
| <Project Path="samples/Wpf.Ui.Demo.Console/Wpf.Ui.Demo.Console.csproj" /> | ||
| <Project Path="samples/Wpf.Ui.Demo.Dialogs/Wpf.Ui.Demo.Dialogs.csproj" /> | ||
| <Project Path="samples/Wpf.Ui.Demo.Mvvm/Wpf.Ui.Demo.Mvvm.csproj" /> | ||
| <Project Path="samples/Wpf.Ui.Demo.SetResources.Simple/Wpf.Ui.Demo.SetResources.Simple.csproj" /> | ||
| <Project Path="samples/Wpf.Ui.Demo.Simple/Wpf.Ui.Demo.Simple.csproj" /> | ||
| </Folder> | ||
| <Folder Name="/Solution Items/"> | ||
| <File Path=".editorconfig" /> | ||
| <File Path="Directory.Build.props" /> | ||
| <File Path="Directory.Build.targets" /> | ||
| <File Path="Directory.Packages.props" /> | ||
| <File Path="LICENSE" /> | ||
| <File Path="LICENSE.md" /> | ||
| <File Path="nuget.config" /> | ||
| <File Path="README.md" /> | ||
| <File Path="Settings.XamlStyler" /> | ||
| <File Path="ThirdPartyNotices.txt" /> | ||
| </Folder> | ||
| <Folder Name="/Tests/"> | ||
| <Project Path="tests/Wpf.Ui.Gallery.IntegrationTests/Wpf.Ui.Gallery.IntegrationTests.csproj" /> | ||
| <Project Path="tests/Wpf.Ui.UnitTests/Wpf.Ui.UnitTests.csproj" /> | ||
| </Folder> | ||
| <Project Path="src/Wpf.Ui.Abstractions/Wpf.Ui.Abstractions.csproj" /> | ||
| <Project Path="src/Wpf.Ui.DependencyInjection/Wpf.Ui.DependencyInjection.csproj" /> | ||
| <Project | ||
| Path="src/Wpf.Ui.Extension.Template.Blank/Wpf.Ui.Extension.Template.Blank.csproj" | ||
| Id="ab3d44b5-9491-487e-a134-9ac5bed2b981" | ||
| > | ||
| <Platform Solution="*|arm64" Project="arm64" /> | ||
| <Platform Solution="*|x64" Project="x64" /> | ||
| <Platform Solution="*|x86" Project="x86" /> | ||
| <Build Solution="*|x86" Project="false" /> | ||
| <Build Solution="Debug|Any CPU" Project="false" /> | ||
| <Build Solution="Debug|arm64" Project="false" /> | ||
| <Build Solution="Debug|x64" Project="false" /> | ||
| </Project> | ||
| <Project | ||
| Path="src/Wpf.Ui.Extension.Template.Compact/Wpf.Ui.Extension.Template.Compact.csproj" | ||
| Id="14d7431c-6cff-4191-bb88-2b8d5f323a30" | ||
| > | ||
| <Platform Solution="*|arm64" Project="arm64" /> | ||
| <Platform Solution="*|x64" Project="x64" /> | ||
| <Platform Solution="*|x86" Project="x86" /> | ||
| <Build Solution="*|x86" Project="false" /> | ||
| <Build Solution="Debug|Any CPU" Project="false" /> | ||
| <Build Solution="Debug|arm64" Project="false" /> | ||
| <Build Solution="Debug|x64" Project="false" /> | ||
| </Project> | ||
| <Project | ||
| Path="src/Wpf.Ui.Extension.Template.Fluent/Wpf.Ui.Extension.Template.Fluent.csproj" | ||
| Id="4d2706b5-27a9-4542-bd4d-8c22d12d0628" | ||
| > | ||
| <Platform Solution="*|arm64" Project="arm64" /> | ||
| <Platform Solution="*|x64" Project="x64" /> | ||
| <Platform Solution="*|x86" Project="x86" /> | ||
| <Build Solution="*|x86" Project="false" /> | ||
| <Build Solution="Debug|Any CPU" Project="false" /> | ||
| <Build Solution="Debug|arm64" Project="false" /> | ||
| <Build Solution="Debug|x64" Project="false" /> | ||
| </Project> | ||
| <Project Path="src/Wpf.Ui.Extension/Wpf.Ui.Extension.csproj" Id="1298d974-9d81-4a93-9374-ea6a0e723deb"> | ||
| <Platform Solution="*|arm64" Project="arm64" /> | ||
| <Platform Solution="*|x64" Project="x64" /> | ||
| <Platform Solution="*|x86" Project="x86" /> | ||
| <Build Solution="*|x86" Project="false" /> | ||
| <Build Solution="Debug|Any CPU" Project="false" /> | ||
| <Build Solution="Debug|arm64" Project="false" /> | ||
| <Build Solution="Debug|x64" Project="false" /> | ||
| </Project> | ||
| <Project Path="src/Wpf.Ui.FlaUI/Wpf.Ui.FlaUI.csproj" /> | ||
| <Project Path="src/Wpf.Ui.FontMapper/Wpf.Ui.FontMapper.csproj" /> | ||
| <Project | ||
| Path="src/Wpf.Ui.Gallery.Package/Wpf.Ui.Gallery.Package.wapproj" | ||
| Type="c7167f0d-bc9f-4e6e-afe1-012c56b48db5" | ||
| > | ||
| <Platform Solution="*|arm64" Project="ARM64" /> | ||
| <Build Solution="*|Any CPU" Project="false" /> | ||
| <Build Solution="Debug|arm64" Project="false" /> | ||
| <Build Solution="Debug|x64" Project="false" /> | ||
| <Build Solution="Debug|x86" Project="false" /> | ||
| <Deploy Solution="Release|arm64" /> | ||
| <Deploy Solution="Release|x64" /> | ||
| <Deploy Solution="Release|x86" /> | ||
| </Project> | ||
| <Project Path="src/Wpf.Ui.Gallery/Wpf.Ui.Gallery.csproj"> | ||
| <Platform Solution="*|arm64" Project="arm64" /> | ||
| <Platform Solution="*|x64" Project="x64" /> | ||
| <Platform Solution="*|x86" Project="x86" /> | ||
| </Project> | ||
| <Project Path="src/Wpf.Ui.SyntaxHighlight/Wpf.Ui.SyntaxHighlight.csproj" /> | ||
| <Project Path="src/Wpf.Ui.ToastNotifications/Wpf.Ui.ToastNotifications.csproj" /> | ||
| <Project Path="src/Wpf.Ui.Tray/Wpf.Ui.Tray.csproj" /> | ||
| <Project Path="src/Wpf.Ui/Wpf.Ui.csproj" /> | ||
| </Solution> |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.