We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cff8de2 commit dbe0c61Copy full SHA for dbe0c61
WinNUT_V2/WinNUT-Client_Common/WinNUT_Globals.vb
@@ -14,9 +14,11 @@ Public Module WinNUT_Globals
14
#Region "Constants/Shareds"
15
16
#If DEBUG Then
17
+ Public ReadOnly IsDebugBuild = True
18
' If debugging, keep any generated data next to the debug executable.
19
Private ReadOnly DESIRED_DATA_PATH As String = Path.Combine(Environment.CurrentDirectory)
20
#Else
21
+ Public ReadOnly IsDebugBuild = False
22
Private ReadOnly DESIRED_DATA_PATH As String = Environment.GetFolderPath(
23
Environment.SpecialFolder.ApplicationData))
24
#End If
0 commit comments