-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreleasenotes.props
81 lines (59 loc) · 1.93 KB
/
releasenotes.props
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
<Project>
<PropertyGroup>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '1.0.0'">
<![CDATA[
Features
- First stable release
]]>
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha.6b'">
<![CDATA[
Fixes
- Corrected the published package (but the new version broke the doc links)
]]>
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha.6'">
<![CDATA[
Features
- Removed windows specific paths from tests
- More documentation
]]>
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha.5'">
<![CDATA[
Fixes
- Included doc-comments of the EmbeddedResourceProperties attribute in the package
]]>
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha.4'">
<![CDATA[
Features
- Moved the attribute to its own dll
- Include Read method in each class
- The Read method, backing fields, and resource names are available to the class
]]>
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha.3'">
<![CDATA[
Features
- Included `EmbeddedResourcePropertyExample` project in github repository
Fixes
- Removing doc duplication
]]>
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha.2'">
<![CDATA[
Features
- Add `[Conditional]` attribute to restrict output of the `EmbeddedResourcePropertiesAttribute`
]]>
</PackageReleaseNotes>
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha'">
<![CDATA[
Features
- Add support for overriding `ReadEmbeddedResourceValue` partial method
]]>
</PackageReleaseNotes>
<PackageReleaseNotes>$(PackageReleaseNotes)
See $(PackageProjectUrl)/blob/main/CHANGELOG.md#v$(PackageVersion.Replace('.','')) for more details.</PackageReleaseNotes>
</PropertyGroup>
</Project>