Skip to content

Commit

Permalink
v.1.0.0-preview.25 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jsakamoto committed Feb 17, 2024
1 parent b19cd7f commit d2a4488
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 11 deletions.
1 change: 1 addition & 0 deletions BlazingStory/BlazingStory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@

<ItemGroup>
<Content Include="..\RELEASE-NOTES.txt" Link="wwwroot\RELEASE-NOTES.txt" />
<Content Include="..\THIRD-PARTY-NOTICES.txt" Link="wwwroot\THIRD-PARTY-NOTICES.txt" />
<Content Update="**\*.json" Pack="false" CopyToOutputDirectory="Never" />
<None Include="..\assets\icon-128x128.png" Pack="true" Visible="false" PackagePath="" />
<None Include="..\README.md" Visible="false" Pack="true" PackagePath="\" />
Expand Down
9 changes: 7 additions & 2 deletions ProjectTemplate/Content/BlazingStoryWasm/Client/App.razor
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
<BlazingStoryApp Assemblies="new []{ typeof(App).Assembly }" DefaultLayout="typeof(DefaultLayout)">
</BlazingStoryApp>
@*#if (Framework == "net7.0")*@
<BlazingStoryApp Assemblies="new []{ typeof(App).Assembly }" DefaultLayout="typeof(DefaultLayout)">
</BlazingStoryApp>
@*#else*@
<BlazingStoryApp Assemblies="[typeof(App).Assembly]" DefaultLayout="typeof(DefaultLayout)">
</BlazingStoryApp>
@*#endif*@
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
</PropertyGroup>

<ItemGroup Condition=" '$(Framework)' == 'net7.0' ">
<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" />
<PackageReference Include="BlazingStory" Version="1.0.0-preview.25" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.16" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.16" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Condition=" '$(Framework)' == 'net8.0' ">
<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" />
<PackageReference Include="BlazingStory" Version="1.0.0-preview.25" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.2" PrivateAssets="all" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
</PropertyGroup>

<ItemGroup Condition=" '$(Framework)' == 'net7.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.15" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.16" />
</ItemGroup>
<ItemGroup Condition=" '$(Framework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.2" />
</ItemGroup>

<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.25
- Improve: The code view on a Docs page now syntax highlights and reflects user-entered parameters in real-time.

v.1.0.0-preview.24
- Fix: the XML doc comments markup <see href> was not displayed on the Docs page.

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.24</Version>
<Version>1.0.0-preview.25</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 d2a4488

Please sign in to comment.