Skip to content

Commit

Permalink
Update package versions for Blazor projects
Browse files Browse the repository at this point in the history
Updated `Microsoft.AspNetCore.Components.WebAssembly` and related packages to version 6.0.36 across multiple project files. The `System.Net.Http.Json` package was also updated to version 6.0.2. In the test project, several packages including `bunit`, `Microsoft.NET.Test.Sdk`, `xunit`, and `coverlet.collector` were upgraded to ensure compatibility with the latest features and improvements.
  • Loading branch information
SQL-MisterMagoo committed Dec 22, 2024
1 parent c3be28f commit 2d6ff2c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
6 changes: 3 additions & 3 deletions samples/BlazorWebAssembly/BlazorWebAssembly.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.0" PrivateAssets="all" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.36" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.36" PrivateAssets="all" />
<PackageReference Include="System.Net.Http.Json" Version="6.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions samples/SharedRCL/SharedRCL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@


<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.36" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.36" />
</ItemGroup>


Expand Down
4 changes: 2 additions & 2 deletions src/Blazored.Video/Blazored.Video.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.36" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.36" />
</ItemGroup>

</Project>
12 changes: 7 additions & 5 deletions tests/Blazored.Video.Tests/Blazored.Video.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="bunit" Version="1.13.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="bunit" Version="1.37.7" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit 2d6ff2c

Please sign in to comment.