minor interface adjustments

This commit is contained in:
2024-01-04 12:15:31 +01:00
parent f8d13dcc92
commit 488cdbcaef
3 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
Public Interface ISettingsManager
Property ConfigFilePath As String
ReadOnly Property Instance As ISettings
Sub Save()
Sub Load()
Sub Reset()

View File

@@ -25,7 +25,7 @@
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>3.0.1</Version>
<Version>3.0.2</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />

View File

@@ -16,9 +16,9 @@ Public Class SettingsManager
Private enableAutoSave As Boolean = False
Private addedHandler As Boolean = False
Public Property ConfigFilePath As String Implements ISettingsManager.ConfigFilePath
Public Property ConfigFilePath As String
Public ReadOnly Property Instance As IChildSettings
Public ReadOnly Property Instance As ISettings
Get
If defaultInstance Is Nothing Then
Load()