This repository was archived by the owner on Feb 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
.NET 5 support for Notifications package #3622
Merged
Merged
Changes from 8 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
644005e
Works with .NET 5
andrewleader 6f9566d
Merge branch 'master' into aleader/notifications-net-5
andrewleader c6f3878
Merge branch 'master' into aleader/notifications-net-5
andrewleader 186d154
Keep UWP min version at 10240
andrewleader 5f17993
Merge branch 'aleader/notifications-net-5' of https://github.com/wind…
andrewleader a4eff63
Merge branch 'master' into aleader/notifications-net-5
andrewleader 9dd9fd5
Undo accidentally committed change
andrewleader 72205c9
Merge branch 'master' into aleader/notifications-net-5
azchohfi 3920ebc
Aleader/notifications net 5 and native (#3644)
andrewleader ad7be92
Support for UWP 10240
andrewleader b454de1
Interop working on all but UWP 15063 and lower
andrewleader 056e0be
Fix warnings
andrewleader 4794810
Merge branch 'master' into aleader/notifications-net-5
andrewleader bbf295f
Merge branch 'master' into aleader/notifications-net-5
andrewleader d407488
Support activating when process is elevated
andrewleader c23b5df
Fix warnings
andrewleader 4277b49
Merge branch 'master' into aleader/notifications-net-5
michael-hawker d1518bd
Nuspec updates
andrewleader 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "msbuild-sdks": { | ||
| "MSBuild.Sdk.Extras": "2.0.54" | ||
| "MSBuild.Sdk.Extras": "3.0.22" | ||
| } | ||
| } |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@clairernovotny when we specify
uap10.0.19041here will to be enforced for the "Target" or the "Min" required version of the app?In our other packages we assume it's the min and have
17763, so I would assume we want to follow that pattern here as well?@andrewleader was there some guidance or doc you reference in setting this up?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uap10.0.19041is the target, not the min. Min version is specified in the<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>, I've tested and confirmed it installs on old UWPs. I don't think the MSBuild.Sdk.Extras has documented all of this, but it works 🤷♂️That's how the net5.0-windows TF works too, what's specified is the target... however, there's a weird case where if the app is targeting
17763and the library is targeting19041but ALSO has a plainnet5.0target, it'll picknet5.0instead... hence why I've keptnet5.0-windowsat 17763 (I confirmed you do not need the 17763 SDK installed to build it though so ppl only need 19041 SDK).