forked from yohney/dto-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-notes.html
85 lines (75 loc) · 2.97 KB
/
release-notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen">
<title>Release notes</title>
</head>
<body>
<div class="container">
<div id="header">
<h1>Release notes</h1>
</div>
<h2>Version 1.8</h2>
<p>Bugs fixed:</p>
<ul>
<li>Fixed issue with overriden properties.</li>
<li>Fixed issue when choosing a destination project in a solution with several similar project names</li>
<li>Fixed issue when having another selector expression within custom code in DTO, and DTO is regenerated</li>
</ul>
<h2>Version 1.7</h2>
<p>Features added:</p>
<ul>
<li>Added option to preserve ComponentModel.DataAnnotations attributes (thanks to <a href="https://github.com/Gwenou">Gwenou</a>).</li>
<li>When new DTO is generated, it is opened automatically.</li>
</ul>
<p>Bugs fixed:</p>
<ul>
<li>Fixed bug System.Guid and similar simple types.</li>
<li>Fixed bug with nested entities (for now they are just ignored)</li>
</ul>
<h2>Version 1.5</h2>
<p>Features added:</p>
<ul>
<li>Enabled generating DataContract and DataMember attributes if chosen.</li>
</ul>
<p>Bugs fixed:</p>
<ul>
<li>Fixed bug with using .NET core and wrongly generated namespaces.</li>
<li>Fixed bug with unknown namespace if mapper is not selected.</li>
</ul>
<p>Features added:</p>
<ul>
<li>Detailed stack trace report opens in browser.</li>
</ul>
<h2>Version 1.4</h2>
<p>Bugs fixed:</p>
<ul>
<li>Fixed bug in generating related entity properties in selector expression. Replaced null with default(type).</li>
<li>Fixed bug in regenerating DTO to remember if DTO was inherited or not.</li>
</ul>
<p>Features added:</p>
<ul>
<li>Added option to generate only DTO (not generate mapper at all)</li>
</ul>
<h2>Version 1.3</h2>
<p>Bugs fixed:</p>
<ul>
<li>Fixed bug when using Nullable<System.DateTime> and similar types with explicit Nullable generic type name.</li>
<li>Fixed bug when generating initial DTO on completely new project.</li>
</ul>
<h2>Version 1.1</h2>
<p>Bugs fixed:</p>
<ul>
<li>Fixed bug when regenerating DTO to auto selected already generated properties.</li>
</ul>
<p>Changes:</p>
<ul>
<li>Now DTO can be named in any way, with some recommended naming.</li>
<li>It is possible to choose if base type will be introduced</li>
<li>It is easier to pick DTO location</li>
<li>Message box is presented if DTO is about to be regenerated</li>
</ul>
</div>
</body>
</html>