From 1556f8bc45362d0d08450c7db4e73618a5bfe682 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Wed, 4 Oct 2023 13:40:09 +0200 Subject: [PATCH] fix --- Config/ConfigUtils.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config/ConfigUtils.vb b/Config/ConfigUtils.vb index b924c0e3..4573394d 100644 --- a/Config/ConfigUtils.vb +++ b/Config/ConfigUtils.vb @@ -20,7 +20,7 @@ Public Class ConfigUtils ''' The current or new product name ''' The old product name ''' - Private Function MigrateAppDataConfig(pBasePath As String, pConfigName As String, pProductName As String, pOldProductName As String) + Public Function MigrateAppDataConfig(pBasePath As String, pConfigName As String, pProductName As String, pOldProductName As String) Dim oNewDirPath = pBasePath Dim oOldDirPath = oNewDirPath.Replace(pProductName, pOldProductName) Dim oNewFilePath = Path.Combine(oNewDirPath, pConfigName)