-
-
Notifications
You must be signed in to change notification settings - Fork 407
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
Fix issues with Backport.System.Threading.Lock package #4450
Comments
If we go route 2. How will we handle the locks? |
That is a good point, though I'd like to see some hard data about how much different the performance improvements actually make. I must confess that I put in option 2 due to frustration, as the |
I understand that :) |
As an interesting aside, from what I can tell reading the background on System.Threading.Lock, the motivation was to give developers more control over the locking process and not necessarily performance. Looks like MS got an extra bonus with the new design. As with all new language features, their use can be problematic in libraries like CSLA which still target and compile against earlier versions. I guess it is possible to avoid a dependency is for CSLA to create its own Locking abstraction class that contains all the required |
MarkCiliaVincenti/Backport.System.Threading.Lock#6
It looks like we either
Build.Build.props
Right now I'm leaning toward option 2, as I'm not convinced the value of the library is worth the ongoing effort.
The text was updated successfully, but these errors were encountered: