Skip to content

Commit 44020f1

Browse files
committed
Added Release Notes file
1 parent 52ef802 commit 44020f1

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

Fritz.InstantAPIs/Fritz.InstantAPIs.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,18 @@
1616
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1717
<DebugType>embedded</DebugType>
1818
<Version>0.2.0-preview-2</Version>
19-
<PackageReleaseNotes>
20-
Introduced a fluent configuration API for defining which tables to include and exclude from the Entity Framework Context.
21-
22-
Added the ability to create APIs from JSON files on disk
23-
</PackageReleaseNotes>
2419
</PropertyGroup>
2520

21+
22+
<Target Name="PreparePackageReleaseNotesFromFile" BeforeTargets="GenerateNuspec">
23+
<ReadLinesFromFile File="RELEASE_NOTES.txt" >
24+
<Output TaskParameter="Lines" ItemName="ReleaseNoteLines"/>
25+
</ReadLinesFromFile>
26+
<PropertyGroup>
27+
<PackageReleaseNotes>@(ReleaseNoteLines, '%0a')</PackageReleaseNotes>
28+
</PropertyGroup>
29+
</Target>
30+
2631
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
2732
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
2833
</PropertyGroup>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
v0.2.0
2+
- Introduced a fluent configuration API for defining which tables to include and exclude from the Entity Framework Context.
3+
- Added the ability to create APIs from JSON files on disk

0 commit comments

Comments
 (0)