-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Add tvOS specific build of System.Net.Mail #56185
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
Conversation
|
Tagging subscribers to this area: @dotnet/ncl Issue DetailsRef: dotnet/macios#12011 (comment)
|
| #if !NO_NTAUTHENTICATION | ||
| Register(new SmtpNegotiateAuthenticationModule()); | ||
| Register(new SmtpNtlmAuthenticationModule()); | ||
| #endif |
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.
Alternatively this could be split into .NTAuth.cs and .NoNTAuth.cs partial files. It felt like an overkill but I can do it if consistency is favored.
steveisok
left a comment
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.
I'm ok with the #if's in this case
akoeplinger
left a comment
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.
Thank you!
|
Thanks for merge. @rolfbjarne, is it okay to wait for RC with removing the Xamarin workarounds? |
Yes, this does not need to be back ported to the preview 7 branch. |
Ref: dotnet/macios#12011 (comment)