Skip to content

Commit

Permalink
Fixed the Windows Phone projects to build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Oct 27, 2014
1 parent c593d15 commit 2afa06a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MailKit/Net/Imap/ImapClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class ImapClient : MailStore
{
#if NET_4_5 || __MOBILE__
const SslProtocols DefaultSslProtocols = SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12;
#else
#elif !NETFX_CORE
const SslProtocols DefaultSslProtocols = SslProtocols.Tls;
#endif
readonly IProtocolLogger logger;
Expand Down
2 changes: 1 addition & 1 deletion MailKit/Net/Pop3/Pop3Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class Pop3Client : MailSpool
{
#if NET_4_5 || __MOBILE__
const SslProtocols DefaultSslProtocols = SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12;
#else
#elif !NETFX_CORE
const SslProtocols DefaultSslProtocols = SslProtocols.Tls;
#endif

Expand Down
2 changes: 1 addition & 1 deletion MailKit/Net/Smtp/SmtpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class SmtpClient : MailTransport
{
#if NET_4_5 || __MOBILE__
const SslProtocols DefaultSslProtocols = SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12;
#else
#elif !NETFX_CORE
const SslProtocols DefaultSslProtocols = SslProtocols.Tls;
#endif
static readonly byte[] EndData = Encoding.ASCII.GetBytes ("\r\n.\r\n");
Expand Down

0 comments on commit 2afa06a

Please sign in to comment.