update clientsuite for new config manager

This commit is contained in:
Jonathan Jenne 2019-04-15 14:02:16 +02:00
parent 9e33f51d3a
commit ea9c209204
3 changed files with 6 additions and 5 deletions

View File

@ -25,7 +25,7 @@ Namespace My
' Layout files will be saved in %Appdata% (Roaming) so they will be syncronized with the user profile ' Layout files will be saved in %Appdata% (Roaming) so they will be syncronized with the user profile
Dim oUIConfigPath = IO.Path.Combine(Windows.Forms.Application.UserAppDataPath, ClassConstants.FOLDER_NAME_LAYOUT) Dim oUIConfigPath = IO.Path.Combine(Windows.Forms.Application.UserAppDataPath, ClassConstants.FOLDER_NAME_LAYOUT)
Dim oUIConfigManager As New ConfigManager(Of ClassUIConfig)(oLogConfig, oUIConfigPath) Dim oUIConfigManager As New ConfigManager(Of ClassUIConfig)(oLogConfig, oUIConfigPath, oUIConfigPath)
LogConfig = oLogConfig LogConfig = oLogConfig
SystemConfigManager = oSystemConfigManager SystemConfigManager = oSystemConfigManager

View File

@ -1,6 +1,5 @@
Imports System.ComponentModel Imports System.Xml.Serialization
Imports System.Runtime.CompilerServices Imports DigitalData.Modules.Config.ConfigAttributes
Imports System.Xml.Serialization
''' <summary> ''' <summary>
''' --- User Config for EDMI --- ''' --- User Config for EDMI ---
@ -37,7 +36,9 @@ Public Class ClassConfig
' === Simple/Actual Config Properties === ' === Simple/Actual Config Properties ===
' === Service Configuration === ' === Service Configuration ===
<ConnectionString>
Public Property ServiceIP As String = String.Empty Public Property ServiceIP As String = String.Empty
<ConnectionString>
Public Property ServicePort As Integer = -1 Public Property ServicePort As Integer = -1
Public Property HeartbeatInterval As Integer = 5000 Public Property HeartbeatInterval As Integer = 5000

View File

@ -446,7 +446,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Config\Config.vbproj"> <ProjectReference Include="..\Config\Config.vbproj">
<Project>{44982F9B-6116-44E2-85D0-F39650B1EF99}</Project> <Project>{44982f9b-6116-44e2-85d0-f39650b1ef99}</Project>
<Name>Config</Name> <Name>Config</Name>
</ProjectReference> </ProjectReference>
<ProjectReference Include="..\EDMI_FILE_OPs\EDMIAPI.vbproj"> <ProjectReference Include="..\EDMI_FILE_OPs\EDMIAPI.vbproj">