diff --git a/app/TaskFlow/ClassInit.vb b/app/TaskFlow/ClassInit.vb index 9108752..3d54fdd 100644 --- a/app/TaskFlow/ClassInit.vb +++ b/app/TaskFlow/ClassInit.vb @@ -13,11 +13,7 @@ Public Class ClassInit Public Sub InitLogger() - Dim oConfigPrefix As String = My.Settings.UserConfig_Prefix Dim oLocalUserAppDataPath As String = Application.LocalUserAppDataPath - If oConfigPrefix.Length > 0 Then - oLocalUserAppDataPath = IO.Path.Combine(oLocalUserAppDataPath, oConfigPrefix) - End If LOGCONFIG = New LogConfig(LogConfig.PathType.CustomPath, oLocalUserAppDataPath & "\Log", Nothing, @@ -47,23 +43,8 @@ Public Class ClassInit Public Sub InitUserConfig() Try Dim oUserAppDataPath As String = Application.UserAppDataPath - Dim oLegacyAppDataPath As String = Application.UserAppDataPath Dim oCommonAppDataPath = Application.CommonAppDataPath Dim oStartupPath = Application.StartupPath - Dim oConfigPrefix As String = My.Settings.UserConfig_Prefix - - ' If prefix is configured, use it to create a subfolder in app data and migrate existing data - If oConfigPrefix.Length > 0 Then - oUserAppDataPath = IO.Path.Combine(Application.UserAppDataPath, oConfigPrefix) - - Dim oConfigUtils As New ConfigUtils(LOGCONFIG) - - If oConfigUtils.TestMigrationNeeded(oUserAppDataPath) Then - LOGCONFIG.Debug = True - oConfigUtils.MigrateConfig(oLegacyAppDataPath, oUserAppDataPath) - LOGCONFIG.Debug = False - End If - End If ' If AppConfig from Startup Path should be forced, rewrite the common app data path If My.Settings.UseAppConfigConString = True Then diff --git a/app/TaskFlow/My Project/AssemblyInfo.vb b/app/TaskFlow/My Project/AssemblyInfo.vb index 3b392cd..1ef11fb 100644 --- a/app/TaskFlow/My Project/AssemblyInfo.vb +++ b/app/TaskFlow/My Project/AssemblyInfo.vb @@ -14,7 +14,7 @@ Imports System.Runtime.InteropServices - +