fix portable build
This commit is contained in:
Родитель
f9fc5d5b28
Коммит
c064a9d5c6
|
@ -183,7 +183,12 @@ namespace Telerik.JustMock
|
|||
}
|
||||
#endif
|
||||
|
||||
internal static Action<string> DebugTrace = s => System.Diagnostics.Trace.WriteLine(s);
|
||||
internal static Action<string> DebugTrace = s =>
|
||||
#if PORTABLE
|
||||
System.Diagnostics.Debug.WriteLine(s);
|
||||
#else
|
||||
System.Diagnostics.Trace.WriteLine(s);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче