Skip to content

Commit

Permalink
v.1.0.0-preview.24 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jsakamoto committed Feb 12, 2024
1 parent cdfe27d commit 07ac6ec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ProjectTemplate/BlazingStory.ProjectTemplates.msbuild
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
</ReadLinesFromFile>
<PropertyGroup>
<PackageReleaseNotes>@(ReleaseNoteLines, '%0a');v.0.0</PackageReleaseNotes>
<PackageReleaseNotes>$(PackageReleaseNotes.Replace('&lt;','&amp;lt;'))</PackageReleaseNotes>
<PackageReleaseNotes>$(PackageReleaseNotes.Replace('&gt;','&amp;gt;'))</PackageReleaseNotes>
<PackageReleaseNotes>$([System.Text.RegularExpressions.Regex]::Match($(PackageReleaseNotes), "^(v\.[\d\.]+.+?)v\.[\d\.]+", System.Text.RegularExpressions.RegexOptions.Singleline).Groups[1].Value)</PackageReleaseNotes>
<PackageReleaseNotes>$(PackageReleaseNotes)%0aTo see all the change logs, please visit the following URL.%0a- $(RepositoryUrl)blob/main/RELEASE-NOTES.txt</PackageReleaseNotes>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
</PropertyGroup>

<ItemGroup Condition=" '$(Framework)' == 'net7.0' ">
<PackageReference Include="BlazingStory" Version="1.0.0-preview.23" />
<PackageReference Include="BlazingStory" Version="1.0.0-preview.24" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.15" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.15" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Condition=" '$(Framework)' == 'net8.0' ">
<PackageReference Include="BlazingStory" Version="1.0.0-preview.23" />
<PackageReference Include="BlazingStory" Version="1.0.0-preview.24" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.1" PrivateAssets="all" />
</ItemGroup>
Expand Down
3 changes: 3 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v.1.0.0-preview.24
- Fix: the XML doc comments markup <see href> was not displayed on the Docs page.

v.1.0.0-preview.23
- Improve: get XML Doc comments for parameters even when inherited from other assemblies or NuGet packages.

Expand Down
2 changes: 1 addition & 1 deletion VersionInfo.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>1.0.0-preview.23</Version>
<Version>1.0.0-preview.24</Version>
<Copyright>Copyright © 2023-2024 J.Sakamoto, Mozilla Public License 2.0</Copyright>
<Authors>J.Sakamoto</Authors>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit 07ac6ec

Please sign in to comment.