Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mRemoteV1/App/App.Info.vb')
-rw-r--r--mRemoteV1/App/App.Info.vb7
1 files changed, 4 insertions, 3 deletions
diff --git a/mRemoteV1/App/App.Info.vb b/mRemoteV1/App/App.Info.vb
index 0bcee326..5b898675 100644
--- a/mRemoteV1/App/App.Info.vb
+++ b/mRemoteV1/App/App.Info.vb
@@ -14,10 +14,11 @@ Namespace App
End Class
Public Class Settings
- 'Exchange to make portable/normal
+#If Not PORTABLE Then
Public Shared ReadOnly SettingsPath As String = GetFolderPath(SpecialFolder.LocalApplicationData) & "\" & My.Application.Info.ProductName
- 'Public Shared ReadOnly SettingsPath As String = My.Application.Info.DirectoryPath
-
+#Else
+ Public Shared ReadOnly SettingsPath As String = My.Application.Info.DirectoryPath
+#End If
Public Shared ReadOnly LayoutFileName As String = "pnlLayout.xml"
Public Shared ReadOnly ExtAppsFilesName As String = "extApps.xml"
End Class