Commit 09d57660 authored by Ruan Pearce-Authers's avatar Ruan Pearce-Authers

Replace MONO define with standard __MonoCS__

parent 9320322f
......@@ -169,7 +169,7 @@ internal void OnErrorMessage(EndPoint endpoint, string message)
static void Write<T>(ZipArchive zip, string name, Task task, Action<T, StreamWriter> callback)
{
var entry = zip.CreateEntry(name,
#if MONO
#if __MonoCS__
CompressionLevel.Fastest
#else
CompressionLevel.Optimal
......
#if MONO
#if __MonoCS__
namespace StackExchange.Redis
{
......
......@@ -5,7 +5,7 @@
using System.Runtime.InteropServices;
using System.Threading;
#if !MONO
#if !__MonoCS__
namespace StackExchange.Redis
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment