-
Notifications
You must be signed in to change notification settings - Fork 471
Conversation
add windows 1809 / 10.0.18362 target
Don't merge yet, seems not to work with Windows 1809 |
Target 1809 instead of 2004
I picked the wrong uap version number now it should really target 1809 and 2004 |
It works now |
As I mentioned in. When you Target for Min Windows 1809 Then the Transparent Background won't work because of this.
The 1809 Target won't Compile the Code and therefore it won't be executed which means no Transparent Background for the Popup. But it would solve the UWP Targeting issues. and close #942 and #1238? If the Transparent Background should work
would be needed |
Right, I noticed that compiler directive in there, yet it breaks right now for people targeting different versions if I understand correctly |
That's why I did the pull request #942 |
Maybe Multi Targeting and deciding by case by case basis what to do is saver than having runtime crashes. For example in the develop branch View.ActualSize is used which is not availble under 1809 with compilation for 1809 and 2004 this would immediatly be detected. Here I mentioned a possible Fix for 1809 with transparent background, But I have to this it First in Release (Linking Mode if it still works). |
Trying to fix Transparant Background in Popup for 1809 Target
Revert Sdk.extras upgrade
I tested the changes and it works for an UWP App in the Debug Mode. But if I Native Compile it (Release) Popup does not work. Although the original Popup doesn't work in Release Mode. I have to investigate further what the problem could be. Maybe the wrong Release compilation Settings. |
A fun fact I discovered is that the Xamarin.CommunityToolkit Nuget Package and Xamarin.CommunityToolkit Project behave differently in Version Resolution Management.
|
I removed the Release Compilation Crash Fixes from this Pull Request, because they are reviewed in this Pull Request. |
@inforithmics thank you for keeping this PR up to date. To give a brief heads up we are currently unsure what the best course of action is in terms of supporting an older version of UWP and also the implications of targeting multiple versions. I plan to investigate this over the next week or so in order to hopefully help us all come to a decision on whether this is something we should do. This also relates to #1684 |
Changes made in #1684 were considered safer |
Description of Change
Bugs Fixed
Probably Fixes
API Changes
Adds Target Windows 17763 / 1809
Keeps Target Windows 19031 / 2004
Behavioral Changes
works now again on Windows 17763 / 1809
PR Checklist
Has already tests
Has already samples