File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change
1
+ #### 1.5.0 - 15.06.2018
2
+ * Tweak INI File Parser to allow semicolon characters inside string values (thanks [ @zakakula ] ( https://github.com/zakaluka ) !).
3
+ * NOTE: This will result in comments no longer being valid beside string values, instead comments should go on a line above the key-value pair
4
+
1
5
#### 1.4.0 - 23.02.2018
2
6
* Migration to latest TPSDK
3
7
Original file line number Diff line number Diff line change @@ -16,13 +16,15 @@ Create a `Sample.ini` file like this:
16
16
[Section1]
17
17
intSetting = 2
18
18
stringSetting = stringValue
19
- ;you are free to add comments like this
19
+ ; you are free to add comments like this. They are only valid if they begin a new line
20
20
[Section2]
21
- floatSetting = 1.23 ; float settings are also supported
21
+ ; float settings are also supported
22
+ floatSetting = 1.23
22
23
boolSetting = true
23
24
anotherBoolSetting = False
24
25
; settings with no value are OK
25
26
emptySetting =
27
+ stringWithSemiColonValue = DataSource=foo@bar;UserName=blah
26
28
27
29
Reference the type provider assembly and configure it to use your ini file:
28
30
*)
Original file line number Diff line number Diff line change
1
+ #### 1.5.0 - 15.06.2018
2
+ * Tweak INI File Parser to allow semicolon characters inside string values (thanks [ @zakakula ] ( https://github.com/zakaluka ) !).
3
+ * NOTE: This will result in comments no longer being valid beside string values, instead comments should go on a line above the key-value pair
4
+
1
5
#### 1.4.0 - 23.02.2018
2
6
* Migration to latest TPSDK
3
7
You can’t perform that action at this time.
0 commit comments