Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix documentation #15

Merged
merged 3 commits into from
Jul 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion IniWrapper/IniWrapper/IniWrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
<Description>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.</Description>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Piotr Szkudlarski</Authors>
<Copyright>2018 Piotr Szkudlarski</Copyright>
<Copyright>2018 Piotr Szkudlarski</Copyright>
<PackageReleaseNotes>- Added Settings to configure default behaviour of library
Breaking changes:
- Changed IniWrapperFactory method to CreateWithDefaultIniParser
- fixed typo in CollectionOfComplexTypeException</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public enum MissingFileWhenLoadingHandling
DoNotLoad,
/// <summary>
/// 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.
/// </summary>
CreateWithDefaultValues
}
Expand Down