Fix BinaryFileTest

mRemoteNGTests doesn't define "DEBUG" and "PORTABLE", but defines "DEBUG_PORTABLE" macro.

Signed-off-by: Vest <Vest@users.noreply.github.com>
This commit is contained in:
Vest
2021-12-22 22:36:38 +01:00
parent 04c83c608b
commit 157bda8f51

View File

@@ -17,14 +17,14 @@ namespace mRemoteNGTests
public string GetTargetPath([CallerFilePath] string sourceFilePath = "")
{
const string debugOrRelease =
#if DEBUG
#if DEBUG || DEBUG_PORTABLE
"Debug";
#else
"Release";
#endif
const string normalOrPortable =
#if PORTABLE
#if PORTABLE || DEBUG_PORTABLE
" Portable";
#else
"";