-
-
Notifications
You must be signed in to change notification settings - Fork 71
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
implemented workaround for .NET Core design-time data binding bug #251
implemented workaround for .NET Core design-time data binding bug #251
Conversation
Thanks! Now that I see the workaround, I think I prefer removing |
Also, we should mention somewhere that you need to close and re-open the XAML file for the workaround to apply (I needed to do that, at least). And if we use my alternative suggestion, that must be documented, preferably straight in the readme. (We can document both if you want.) |
64293f2
to
80fbb60
Compare
I also prefer using Using |
I was planning on sharing your |
How weird. Well, let's use
Sure! As long as we can link to a place where the user will not be confused about which particular variant of the workaround we suggest. |
@BentTranberg, I thought of another workaround. You can target .NET Framework when a developer builds and target .NET Core when creating a release (like on a build server).
One advantage of this approach is that it only requires workaround code in a constant number of spots. That is, it doesn't depend on the number of We could also use this workaround for the samples, but I prefer the simplicity of @cmeeren's |
I added a comment to the issue. I am satisfied with the README (which doesn't mention the details of the workaround) and that issue as they are. I can add more information if you would prefer @cmeeren. |
Let's make it simple for our users. Particularly since the preferred workaround is not even formatted correctly (since markdown doesn't work in issue comments, as you mentioned in the issue). I have updated the readme (forgot to mention this issue in the commit message). Feel free to adjust. |
80fbb60
to
7aadc2f
Compare
7aadc2f
to
04280e3
Compare
Looks great. I removed the README modifications from this PR and rebased. I will complete when the build finishes successfully. |
I got a reply on the issue I created in the Visual Studio Developer Community. The same issue was reported three weeks ago, and a workaround was found. This PR implements that workaround.
Quoting #249 (comment)
I need to eat my words. They did a great job this time.
Quoting #249 (comment)
You were on the right track @cmeeren!