From 0dbe20c36bb18766743695b4107f12706ef17dac Mon Sep 17 00:00:00 2001 From: Tisu Date: Sat, 21 Jul 2018 21:20:51 +0200 Subject: [PATCH 1/2] Fix typo --- .../IniWrapper/Settings/MissingFileWhenLoadingHandling.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IniWrapper/IniWrapper/Settings/MissingFileWhenLoadingHandling.cs b/IniWrapper/IniWrapper/Settings/MissingFileWhenLoadingHandling.cs index ec187d5..316d272 100644 --- a/IniWrapper/IniWrapper/Settings/MissingFileWhenLoadingHandling.cs +++ b/IniWrapper/IniWrapper/Settings/MissingFileWhenLoadingHandling.cs @@ -15,7 +15,7 @@ public enum MissingFileWhenLoadingHandling DoNotLoad, /// /// If file is missing library will create instance of given configuration class save it to file and return instance. - /// Note: FilePath have to be set. + /// Note: FilePath has to be set. /// CreateWithDefaultValues } From 040392f08f2dd6f173e9926754fff15bcdb3a7d8 Mon Sep 17 00:00:00 2001 From: Tisu Date: Sat, 21 Jul 2018 21:23:34 +0200 Subject: [PATCH 2/2] Added ReleaseNotes --- IniWrapper/IniWrapper/IniWrapper.csproj | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/IniWrapper/IniWrapper/IniWrapper.csproj b/IniWrapper/IniWrapper/IniWrapper.csproj index 1c1feab..bf244ca 100644 --- a/IniWrapper/IniWrapper/IniWrapper.csproj +++ b/IniWrapper/IniWrapper/IniWrapper.csproj @@ -10,7 +10,11 @@ IniWrapper uses reflection to bind value read from ini file to provided model. The purpose of this library is NOT parsing ini file, but to wrap it to provide easier use of existing parsing libraries. In configuration there is possibility to pass IniParser interface, which is used as file access layer. This library provides class that wraps Windows C++ methods to retrieve values from ini file. true Piotr Szkudlarski - 2018 Piotr Szkudlarski + 2018 Piotr Szkudlarski + - Added Settings to configure default behaviour of library +Breaking changes: +- Changed IniWrapperFactory method to CreateWithDefaultIniParser +- fixed typo in CollectionOfComplexTypeException