Compare commits
2 Commits
5658c233ee
...
5a0febe8f2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a0febe8f2 | ||
|
|
89f45c37c5 |
@@ -114,11 +114,13 @@ Public Class ConfigManager(Of T)
|
||||
_UserConfigPath = Path.Combine(_UserDirectory, USER_CONFIG_NAME)
|
||||
|
||||
If ComputerConfigPath <> String.Empty Then
|
||||
_ComputerDirectory = _File.CreateDirectory(ComputerConfigPath)
|
||||
If IO.File.Exists(ComputerConfigPath) Then
|
||||
_ComputerDirectory = _File.CreateDirectory(ComputerConfigPath, False)
|
||||
End If
|
||||
_ComputerConfigPath = Path.Combine(_ComputerDirectory, COMPUTER_CONFIG_NAME)
|
||||
End If
|
||||
|
||||
If ApplicationStartupPath <> String.Empty Then
|
||||
If ApplicationStartupPath <> String.Empty Then
|
||||
_Logger.Debug($"AppConfig is being used: [{ApplicationStartupPath}]")
|
||||
_AppConfigPath = Path.Combine(ApplicationStartupPath, APP_CONFIG_NAME)
|
||||
End If
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.1.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.1.0.0")>
|
||||
<Assembly: AssemblyVersion("1.1.1.0")>
|
||||
<Assembly: AssemblyFileVersion("1.1.1.0")>
|
||||
|
||||
Reference in New Issue
Block a user