Skip to content

Commit f68a5a1

Browse files
committed
Added start of migration docs. Docs build.
1 parent c9bee55 commit f68a5a1

File tree

75 files changed

+1280
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1280
-17
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ obj/
44
_NCrunch_*/
55
artifacts/
66
.tmp/
7+
cache/
78

89
*.user
910
*.psess

GitVersion.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 21.0.5
1+
#next-version: 21.0.5
22
assembly-versioning-scheme: Major
33
assembly-file-versioning-format: '{Major}.{Minor}.{Patch}.{env:BUILD_NUMBER ?? 0}'
44
branches:

docs/api/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -80,6 +81,8 @@ <h1 id="coming-soon">Coming soon...</h1>
8081
</div>
8182
</main>
8283

84+
<br /><br />
85+
8386
<footer id="footer" class="footer">
8487
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
8588
</footer>

docs/change-log/index.html

+10-7
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -374,13 +375,13 @@ <h4 id="breaking-changes-7">Breaking Changes</h4>
374375
<li><code>IReaderConfiguration.AutoMap</code> removed.</li>
375376
<li><code>ISerializerConfiguration</code> removed and properties added to <code>IWriterConfiguration</code>.</li>
376377
<li>All <code>IWriterConfiguration</code> setters removed.</li>
377-
<li><code>WriterConfiguration.QuoteString</code> removed.</li>
378-
<li><code>WriterConfiguration.TypeConverterCache</code> removed.</li>
379-
<li><code>WriterConfiguration.MemberTypes</code> removed.</li>
380-
<li><code>WriterConfiguration.Maps</code> removed.</li>
381-
<li><code>WriterConfiguration.RegisterClassMap</code> removed.</li>
382-
<li><code>WriterConfiguration.UnregisterClassMap</code> removed.</li>
383-
<li><code>WriterConfiguration.AutoMap</code> removed.</li>
378+
<li><code>IWriterConfiguration.QuoteString</code> removed.</li>
379+
<li><code>IWriterConfiguration.TypeConverterCache</code> removed.</li>
380+
<li><code>IWriterConfiguration.MemberTypes</code> removed.</li>
381+
<li><code>IWriterConfiguration.Maps</code> removed.</li>
382+
<li><code>IWriterConfiguration.RegisterClassMap</code> removed.</li>
383+
<li><code>IWriterConfiguration.UnregisterClassMap</code> removed.</li>
384+
<li><code>IWriterConfiguration.AutoMap</code> removed.</li>
384385
<li><code>MemberMap.Optional</code> added.</li>
385386
<li><code>MemberMap&lt;TClass, TMember&gt;.ConvertUsing</code> renamed to <code>Convert</code>.</li>
386387
<li><code>CsvFieldReader</code> removed.</li>
@@ -1625,6 +1626,8 @@ <h4 id="bug-fixes-108">Bug Fixes</h4>
16251626
</div>
16261627
</main>
16271628

1629+
<br /><br />
1630+
16281631
<footer id="footer" class="footer">
16291632
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
16301633
</footer>

docs/examples/configuration/attributes/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -428,6 +429,8 @@ <h6 id="example">Example</h6>
428429
</div>
429430
</main>
430431

432+
<br /><br />
433+
431434
<footer id="footer" class="footer">
432435
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
433436
</footer>

docs/examples/configuration/class-maps/auto-mapping/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -420,6 +421,8 @@ <h6 id="example">Example</h6>
420421
</div>
421422
</main>
422423

424+
<br /><br />
425+
423426
<footer id="footer" class="footer">
424427
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
425428
</footer>

docs/examples/configuration/class-maps/constant-value/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -422,6 +423,8 @@ <h6 id="example">Example</h6>
422423
</div>
423424
</main>
424425

426+
<br /><br />
427+
425428
<footer id="footer" class="footer">
426429
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
427430
</footer>

docs/examples/configuration/class-maps/ignoring-properties/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -421,6 +422,8 @@ <h6 id="example">Example</h6>
421422
</div>
422423
</main>
423424

425+
<br /><br />
426+
424427
<footer id="footer" class="footer">
425428
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
426429
</footer>

docs/examples/configuration/class-maps/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -447,6 +448,8 @@ <h1 id="class-maps">Class Maps</h1>
447448
</div>
448449
</main>
449450

451+
<br /><br />
452+
450453
<footer id="footer" class="footer">
451454
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
452455
</footer>

docs/examples/configuration/class-maps/inline-type-conversion/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -473,6 +474,8 @@ <h6 id="output">Output</h6>
473474
</div>
474475
</main>
475476

477+
<br /><br />
478+
476479
<footer id="footer" class="footer">
477480
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
478481
</footer>

docs/examples/configuration/class-maps/mapping-by-alternate-names/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -420,6 +421,8 @@ <h6 id="example">Example</h6>
420421
</div>
421422
</main>
422423

424+
<br /><br />
425+
423426
<footer id="footer" class="footer">
424427
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
425428
</footer>

docs/examples/configuration/class-maps/mapping-by-index/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -423,6 +424,8 @@ <h6 id="example">Example</h6>
423424
</div>
424425
</main>
425426

427+
<br /><br />
428+
426429
<footer id="footer" class="footer">
427430
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
428431
</footer>

docs/examples/configuration/class-maps/mapping-by-name/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -420,6 +421,8 @@ <h6 id="example">Example</h6>
420421
</div>
421422
</main>
422423

424+
<br /><br />
425+
423426
<footer id="footer" class="footer">
424427
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
425428
</footer>

docs/examples/configuration/class-maps/mapping-duplicate-names/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -422,6 +423,8 @@ <h6 id="example">Example</h6>
422423
</div>
423424
</main>
424425

426+
<br /><br />
427+
425428
<footer id="footer" class="footer">
426429
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
427430
</footer>

docs/examples/configuration/class-maps/mapping-properties/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -420,6 +421,8 @@ <h6 id="example">Example</h6>
420421
</div>
421422
</main>
422423

424+
<br /><br />
425+
423426
<footer id="footer" class="footer">
424427
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
425428
</footer>

docs/examples/configuration/class-maps/optional-maps/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -422,6 +423,8 @@ <h6 id="example">Example</h6>
422423
</div>
423424
</main>
424425

426+
<br /><br />
427+
425428
<footer id="footer" class="footer">
426429
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
427430
</footer>

docs/examples/configuration/class-maps/type-conversion/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -440,6 +441,8 @@ <h6 id="example">Example</h6>
440441
</div>
441442
</main>
442443

444+
<br /><br />
445+
443446
<footer id="footer" class="footer">
444447
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
445448
</footer>

docs/examples/configuration/class-maps/validation/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -421,6 +422,8 @@ <h6 id="example">Example</h6>
421422
</div>
422423
</main>
423424

425+
<br /><br />
426+
424427
<footer id="footer" class="footer">
425428
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
426429
</footer>

docs/examples/configuration/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -408,6 +409,8 @@ <h2 id="topics">Topics</h2>
408409
</div>
409410
</main>
410411

412+
<br /><br />
413+
411414
<footer id="footer" class="footer">
412415
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
413416
</footer>

docs/examples/csvdatareader/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -418,6 +419,8 @@ <h1 id="csvdatareader">CsvDataReader</h1>
418419
</div>
419420
</main>
420421

422+
<br /><br />
423+
421424
<footer id="footer" class="footer">
422425
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
423426
</footer>

docs/examples/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -423,6 +424,8 @@ <h1 id="examples">Examples</h1>
423424
</div>
424425
</main>
425426

427+
<br /><br />
428+
426429
<footer id="footer" class="footer">
427430
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
428431
</footer>

docs/examples/prerequisites/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -412,6 +413,8 @@ <h1 id="prerequisites">Prerequisites</h1>
412413
</div>
413414
</main>
414415

416+
<br /><br />
417+
415418
<footer id="footer" class="footer">
416419
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
417420
</footer>

docs/examples/prerequisites/reading-and-writing-files/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<div class="navbar-start">
5151
<a class="navbar-item" href="/CsvHelper/getting-started">Getting Started</a>
5252
<a class="navbar-item" href="/CsvHelper/examples">Examples</a>
53+
<a class="navbar-item" href="/CsvHelper/migration">Migration</a>
5354
<a class="navbar-item" href="/CsvHelper/change-log">Change Log</a>
5455
</div>
5556
<div class="navbar-end">
@@ -438,6 +439,8 @@ <h1 id="reading-and-writing-files">Reading and Writing Files</h1>
438439
</div>
439440
</main>
440441

442+
<br /><br />
443+
441444
<footer id="footer" class="footer">
442445
<div class="has-text-centered">&copy; 2009-2021 Josh Close</div>
443446
</footer>

0 commit comments

Comments
 (0)