mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
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:
@@ -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
|
||||
"";
|
||||
|
||||
Reference in New Issue
Block a user