Skip to content

Commit

Permalink
Merge branch 'update-aspnet-core-8.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
aesalazar committed Apr 23, 2024
2 parents be1f746 + ea134dd commit 2ddc86f
Show file tree
Hide file tree
Showing 142 changed files with 133 additions and 93 deletions.
2 changes: 1 addition & 1 deletion Asteroids.Blazor.Electron/Asteroids.Blazor.Electron.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ElectronNET.API" Version="23.6.1" />
<PackageReference Include="ElectronNET.API" Version="23.6.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Asteroids.BlazorComponents\Asteroids.BlazorComponents.csproj" />
Expand Down
4 changes: 2 additions & 2 deletions Asteroids.Blazor.Electron/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:59576/",
"sslPort": 44359
"applicationUrl": "http://localhost:50618/",
"sslPort": 44347
}
}
}
7 changes: 4 additions & 3 deletions Asteroids.Blazor.Maui/Asteroids.Blazor.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.20" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.3" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.20" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.20" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Asteroids.Blazor.Wasm/Asteroids.Blazor.Wasm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.4" />
</ItemGroup>

<ItemGroup>
Expand Down
61 changes: 41 additions & 20 deletions Asteroids.Standard/Managers/CacheManager.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Asteroids.Standard.Components;
using Asteroids.Standard.Screen;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using Asteroids.Standard.Components;
using Asteroids.Standard.Screen;

namespace Asteroids.Standard.Managers
{
Expand All @@ -23,15 +22,16 @@ public CacheManager(ScoreManager score, Ship? ship, AsteroidBelt belt, IList<Bul
Score = score;
Ship = ship;
Belt = belt;
_bullets = bullets;
_bullets = bullets.ToList();

_bulletLock = new object();
_explosionLock = new object();
_asteroidsLock = new object();

_explosions = new List<Explosion>();
_bulletsInFlight = new List<CachedObject<Bullet>>();
_bulletsAvailable = new List<CachedObject<Bullet>>();
Asteroids = new List<CachedObject<Asteroid>>();
_asteroids = new List<CachedObject<Asteroid>>();

Repopulate();
}
Expand All @@ -43,11 +43,13 @@ public CacheManager(ScoreManager score, Ship? ship, AsteroidBelt belt, IList<Bul
//Read-only
private readonly object _bulletLock;
private readonly object _explosionLock;
private readonly object _asteroidsLock;

private readonly IList<Explosion> _explosions;
private readonly IList<Bullet> _bullets;
private readonly IList<CachedObject<Bullet>> _bulletsInFlight;
private readonly IList<CachedObject<Bullet>> _bulletsAvailable;
private readonly List<Explosion> _explosions;
private readonly List<Bullet> _bullets;
private readonly List<CachedObject<Bullet>> _bulletsInFlight;
private readonly List<CachedObject<Bullet>> _bulletsAvailable;
private readonly List<CachedObject<Asteroid>> _asteroids;

public ScoreManager Score { get; }

Expand All @@ -66,11 +68,6 @@ public CacheManager(ScoreManager score, Ship? ship, AsteroidBelt belt, IList<Bul
/// </summary>
public AsteroidBelt Belt { get; private set; }

/// <summary>
/// Collection of cached <see cref="Asteroid"/>s with parameters cached for optimization.
/// </summary>
public IList<CachedObject<Asteroid>> Asteroids { get; private set; }

/// <summary>
/// Collection of points associated with the <see cref="Saucer"/>, if present.
/// </summary>
Expand Down Expand Up @@ -155,10 +152,28 @@ public void UpdateBelt(AsteroidBelt belt)
{
Belt = belt;

Asteroids = Belt
var list = Belt
.GetAsteroids()
.Select(a => new CachedObject<Asteroid>(a))
.ToList();

lock (_asteroidsLock)
{
_asteroids.Clear();
_asteroids.AddRange(list);
}
}

/// <summary>
/// Returns the current collection of cached Asteroids in a thread-safe manor.
/// </summary>
/// <returns>Disconnected list of cached Asteroids.</returns>
public IList<CachedObject<Asteroid>> GetAsteroids()
{
lock (_asteroidsLock)
{
return _asteroids.ToList();
}
}

/// <summary>
Expand All @@ -167,8 +182,11 @@ public void UpdateBelt(AsteroidBelt belt)
/// </summary>
public void AddAsteroid(Asteroid asteroid)
{
Asteroids.Add(new CachedObject<Asteroid>(asteroid));
Belt.SetAsteroids(Asteroids.Select(c => c.ScreenObject).ToList());
lock (_asteroidsLock)
{
_asteroids.Add(new CachedObject<Asteroid>(asteroid));
Belt.SetAsteroids(_asteroids.Select(c => c.ScreenObject).ToList());
}
}

/// <summary>
Expand All @@ -177,8 +195,11 @@ public void AddAsteroid(Asteroid asteroid)
/// </summary>
public void RemoveAsteroid(int index)
{
Asteroids.RemoveAt(index);
Belt.SetAsteroids(Asteroids.Select(c => c.ScreenObject).ToList());
lock (_asteroidsLock)
{
_asteroids.RemoveAt(index);
Belt.SetAsteroids(_asteroids.Select(c => c.ScreenObject).ToList());
}
}

/// <summary>
Expand Down
6 changes: 3 additions & 3 deletions Asteroids.Standard/Managers/CollisionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public CollisionManager(CacheManager cache)
public bool AsteroidBeltCollision(IList<Point> pointsToCheck)
{
//Get a copy for collection adds/removes
var asteroids = _cache.Asteroids.ToList();
var asteroids = _cache.GetAsteroids();
var score = 0;

//Go through each but break on first hit
Expand Down Expand Up @@ -131,7 +131,7 @@ public bool IsCenterSafe()
{
bool safe = true;

foreach (var asteroid in _cache.Asteroids)
foreach (var asteroid in _cache.GetAsteroids())
{
var separation = asteroid
.Location
Expand Down Expand Up @@ -222,7 +222,7 @@ public void MoveBullets()
public void MoveAsteroids()
{
//Move does not use locks
foreach (var asteroid in _cache.Asteroids)
foreach (var asteroid in _cache.GetAsteroids())
asteroid.ScreenObject.Move();
}

Expand Down
2 changes: 1 addition & 1 deletion Asteroids.Standard/Managers/DrawingManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private void DrawBullets()
private void DrawBelt()
{
var asteroids = _cache
.Asteroids
.GetAsteroids()
.Where(a => a.ScreenObject.Size != Asteroid.AsteroidSize.Dne);

foreach (var asteroid in asteroids)
Expand Down
2 changes: 1 addition & 1 deletion Asteroids.Standard/Screen/TitleScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void DrawScreen()
// Draw the asteroid belt
_cache.Repopulate();

foreach (var asteroid in _cache.Asteroids)
foreach (var asteroid in _cache.GetAsteroids())
{
asteroid.ScreenObject.Move();
_canvas.LoadPolygon(asteroid.PolygonPoints, DrawColor.White);
Expand Down
2 changes: 1 addition & 1 deletion Asteroids.Wpf/Asteroids.Wpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<ItemGroup>
<PackageReference Include="WriteableBitmapEx" Version="1.6.8" />
<PackageReference Include="IndexRange" Version="1.0.2" Condition="'$(TargetFramework)'=='net4.8'" />
<PackageReference Include="IndexRange" Version="1.0.3" Condition="'$(TargetFramework)'=='net4.8'" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@
<Version>28.0.0.3</Version>
</PackageReference>
<PackageReference Include="Xamarin.AndroidX.Core">
<Version>1.12.0.3</Version>
<Version>1.12.0.4</Version>
</PackageReference>
<PackageReference Include="Xamarin.AndroidX.RecyclerView">
<Version>1.3.2.1</Version>
<Version>1.3.2.2</Version>
</PackageReference>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2622" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2662" />
<PackageReference Include="Xamarin.Android.Support.Design" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v7.CardView" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v7.MediaRouter" Version="28.0.0.3" />
<PackageReference Include="Xamarin.AndroidX.MediaRouter" Version="1.6.0.2" />
<PackageReference Include="Xamarin.AndroidX.Palette" Version="1.0.0.22" />
<PackageReference Include="Xamarin.AndroidX.MediaRouter" Version="1.7.0" />
<PackageReference Include="Xamarin.AndroidX.Palette" Version="1.0.0.23" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
</Page>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2622" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2662" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.14" />
</ItemGroup>
<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions Asteroids.Xamarin/Asteroids.Xamarin/Asteroids.Xamarin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.6" />
<PackageReference Include="SkiaSharp.Views.Forms" Version="2.88.6" />
<PackageReference Include="SkiaSharp" Version="2.88.8" />
<PackageReference Include="SkiaSharp.Views.Forms" Version="2.88.8" />
<PackageReference Include="Xam.Plugin.SimpleAudioPlayer" Version="1.6.0" />
<PackageReference Include="Xamarin.Essentials" Version="1.8.0" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2622" />
<PackageReference Include="Xamarin.Essentials" Version="1.8.1" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2662" />
</ItemGroup>

<ItemGroup>
Expand Down
14 changes: 14 additions & 0 deletions CleanBuildFolders.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#remove all build folders for a truely "CLean" solution
$folderNames = "bin", "obj"
$currentDirectory = Get-Location
$directories = Get-ChildItem -Path $currentDirectory -Recurse -Directory

foreach ($directory in $directories) {
foreach ($folderName in $folderNames) {
$path = "$($directory.FullName)\$folderName"
if (Test-Path -Path $path) {
Remove-Item -Path $path -Recurse -Force
Write-Output "Deleted $path"
}
}
}
Binary file modified docs/_framework/Asteroids.Blazor.Wasm.pdb.gz
Binary file not shown.
Binary file modified docs/_framework/Asteroids.Blazor.Wasm.wasm
Binary file not shown.
Binary file modified docs/_framework/Asteroids.Blazor.Wasm.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Asteroids.Blazor.Wasm.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/Asteroids.BlazorComponents.pdb.gz
Binary file not shown.
Binary file modified docs/_framework/Asteroids.BlazorComponents.wasm
Binary file not shown.
Binary file modified docs/_framework/Asteroids.BlazorComponents.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Asteroids.BlazorComponents.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/Asteroids.Standard.pdb.gz
Binary file not shown.
Binary file modified docs/_framework/Asteroids.Standard.wasm
Binary file not shown.
Binary file modified docs/_framework/Asteroids.Standard.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Asteroids.Standard.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.Web.wasm
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.Web.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.Web.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.WebAssembly.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.wasm
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Microsoft.AspNetCore.Components.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified docs/_framework/Microsoft.Extensions.Logging.Abstractions.wasm
Binary file not shown.
Binary file modified docs/_framework/Microsoft.Extensions.Logging.Abstractions.wasm.br
Binary file not shown.
Binary file not shown.
Binary file modified docs/_framework/Microsoft.Extensions.Options.wasm
Binary file not shown.
Binary file modified docs/_framework/Microsoft.Extensions.Options.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Microsoft.Extensions.Options.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/Microsoft.JSInterop.WebAssembly.wasm
Binary file not shown.
Binary file modified docs/_framework/Microsoft.JSInterop.WebAssembly.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Microsoft.JSInterop.WebAssembly.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/Microsoft.JSInterop.wasm
Binary file not shown.
Binary file modified docs/_framework/Microsoft.JSInterop.wasm.br
Binary file not shown.
Binary file modified docs/_framework/Microsoft.JSInterop.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Collections.Concurrent.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Collections.Concurrent.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Collections.Concurrent.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Collections.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Collections.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Collections.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.Primitives.wasm
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.Primitives.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.Primitives.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.TypeConverter.wasm
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.TypeConverter.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.TypeConverter.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.wasm
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.ComponentModel.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Console.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Console.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Console.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Drawing.Primitives.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Drawing.Primitives.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Drawing.Primitives.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Drawing.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Drawing.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Drawing.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Linq.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Linq.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Linq.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Memory.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Memory.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Memory.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Net.Http.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Net.Http.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Net.Http.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Net.Primitives.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Net.Primitives.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Net.Primitives.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.ObjectModel.wasm
Binary file not shown.
Binary file modified docs/_framework/System.ObjectModel.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.ObjectModel.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Private.CoreLib.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Private.CoreLib.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Private.CoreLib.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Private.Uri.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Private.Uri.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Private.Uri.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Runtime.InteropServices.JavaScript.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Runtime.InteropServices.JavaScript.wasm.br
Binary file not shown.
Binary file not shown.
Binary file modified docs/_framework/System.Runtime.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Runtime.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Runtime.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Text.Encodings.Web.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Text.Encodings.Web.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Text.Encodings.Web.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Text.Json.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Text.Json.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Text.Json.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Text.RegularExpressions.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Text.RegularExpressions.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Text.RegularExpressions.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.Threading.wasm
Binary file not shown.
Binary file modified docs/_framework/System.Threading.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.Threading.wasm.gz
Binary file not shown.
Binary file modified docs/_framework/System.wasm
Binary file not shown.
Binary file modified docs/_framework/System.wasm.br
Binary file not shown.
Binary file modified docs/_framework/System.wasm.gz
Binary file not shown.
76 changes: 38 additions & 38 deletions docs/_framework/blazor.boot.json
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
{
"mainAssemblyName": "Asteroids.Blazor.Wasm",
"resources": {
"hash": "sha256-byALBW7LWDkrIPIz0MXZgIdIenOj88+rD49ez+4nsX8=",
"hash": "sha256-XyDiP+ZxBWMMmGFcOX27l7UuWf9CBhnUnTe455pvxo8=",
"jsModuleNative": {
"dotnet.native.8.0.0.es56qai4cz.js": "sha256-LjLDIz9+J7uuiwMlQ4HbNx2BnSpphOtO2MwkoI28vdI="
"dotnet.native.8.0.4.9jew0okg1b.js": "sha256-ju0+XWE0ihz554eKEj0HQ8Opa61xpbUIaX5/MNo8we4="
},
"jsModuleRuntime": {
"dotnet.runtime.8.0.0.g5kkqjfrax.js": "sha256-WdSX3HQvnBYF0KJLZoOyHvTzMHetaob6PV0Kn2K+QXw="
"dotnet.runtime.8.0.4.bu8xbqqd3z.js": "sha256-JeVsECOqOie/Pe89n9PJNJaMmb5vJsAAxfXY8INN64A="
},
"wasmNative": {
"dotnet.native.wasm": "sha256-Vr6ZXKoP77zgabrMIxQ1GbOkrxfx5XGqHO0odLhUIMY="
"dotnet.native.wasm": "sha256-U1JSgnum2OTerSq8i5Y9L17deHEWJmae0djinSPLyJM="
},
"icu": {
"icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
"icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
"icudt_no_CJK.dat": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="
},
"assembly": {
"Asteroids.Blazor.Wasm.wasm": "sha256-u5BypPg5g1Xsv2WDvQ9qrjnDkEmU0A54YrNKRwJsCj4=",
"Asteroids.BlazorComponents.wasm": "sha256-NGLBMnm0WDKZMXVEaZNscZFXpfVpdoHVQMUib+uFbWQ=",
"Asteroids.Standard.wasm": "sha256-CDrDClkbqxedh56HEllRyt/CBhkaDEdjgFaDXIwbS9s=",
"Microsoft.AspNetCore.Components.wasm": "sha256-Vlgg7hST5l5zwM1SzqboDMiOvgeDjxfxyi2wXkkT87w=",
"Microsoft.AspNetCore.Components.Web.wasm": "sha256-6Ii0xui1NKvy2fCRUKlkDuawuve/InLIwkk05KvTY+0=",
"Microsoft.AspNetCore.Components.WebAssembly.wasm": "sha256-Ws5szf6fWPAXna+XyWsAhavx+WDFcA/91DQ7iPRPCMs=",
"Asteroids.Blazor.Wasm.wasm": "sha256-ESCL0vYCJ0afUarCJPIDioZzCMWRgGtsHOQ0P9Gkbto=",
"Asteroids.BlazorComponents.wasm": "sha256-ABDSRDfIw4oZxcWgYwxLfDIL67PIhqYZlNVloNss4ok=",
"Asteroids.Standard.wasm": "sha256-8nEVNlG50n4p9Ff5MpQabM+GhDd6XLN0+EKmKw0BIog=",
"Microsoft.AspNetCore.Components.wasm": "sha256-WKVDsPVahm9uI10eChQYe8gMJgJ88JvRiHOaNgm167c=",
"Microsoft.AspNetCore.Components.Web.wasm": "sha256-6YKsCJCEP8WCMLqe8FvXSHC3g9c14v4sXw5j4GsLysA=",
"Microsoft.AspNetCore.Components.WebAssembly.wasm": "sha256-kZSJV9ON9UL924dyAnAeoFHZXExv5A/OCxTHlMc+3fQ=",
"Microsoft.Extensions.Configuration.Abstractions.wasm": "sha256-87sn2TYqgdZ95sXmavjKEzoEfMgHnYQ9LOvnMX+aZcI=",
"Microsoft.Extensions.Configuration.Json.wasm": "sha256-Sxmy2ZS134URxbHEvdbS6NcQ3zXS7UWx/5ZPpwiW7FA=",
"Microsoft.Extensions.Configuration.wasm": "sha256-jYqHUZ07UYWc8POk7xhas6xQYH7t1qoTcylqoDqncJk=",
"Microsoft.Extensions.DependencyInjection.Abstractions.wasm": "sha256-TXiPdOm8kYuConlGOu7kNs/wml11gln0IRlxxKUoZ7g=",
"Microsoft.Extensions.DependencyInjection.Abstractions.wasm": "sha256-PXzYgDsczelQicBfAQVXuwVsxGzFxnMZqEEBAmY4WHo=",
"Microsoft.Extensions.DependencyInjection.wasm": "sha256-gg8xZqJsBBrrNEyUGzYqhL3sqkuZ4AHAvdTdL9nZ0S0=",
"Microsoft.Extensions.Logging.Abstractions.wasm": "sha256-+Fgk2a7GOZ76M3YfJ+0IDUowOMx8/LBnDwuIKQr+/IA=",
"Microsoft.Extensions.Logging.Abstractions.wasm": "sha256-LcaPEaPNm7pFT9kZyDHfXsV4Z9cGFGu7KFdL3o3UQks=",
"Microsoft.Extensions.Logging.wasm": "sha256-8BH+kQfjYuZWxprOICXJ4+tU0OdJOYDKN7G0S3zYYHI=",
"Microsoft.Extensions.Options.wasm": "sha256-6DN1malfyp0G0uOYwQY0nIN60XdXpVXUXXw0X2c8V8E=",
"Microsoft.Extensions.Options.wasm": "sha256-ezKJDNjeghS/qMdQmUpBPdH7bCDLrqkNqS6RsLxlpOY=",
"Microsoft.Extensions.Primitives.wasm": "sha256-6187ynEahDlSLMBvD4vAmiLpZ3clRb5xu6rM7O8AxNo=",
"Microsoft.JSInterop.wasm": "sha256-lXwhdv0Is9FMH/j0+WH3zoNWAGLbVaONtGucJ/4URQ0=",
"Microsoft.JSInterop.WebAssembly.wasm": "sha256-CQVLCKiSxLN5ghyJZG3mhnMGRROdqrbNUjtAXB0nWb8=",
"netstandard.wasm": "sha256-Oi7ZZPlVgBT0RIdXGqi9STXzhegdwJxyX4NlPPPYX14=",
"System.Collections.Concurrent.wasm": "sha256-VcUybjJzTMQMdGeovXdPu3BdUWlityMHEDOB8/DrJFI=",
"System.Collections.wasm": "sha256-Fus5frhmroc966beCj8crB/GZqlAycOgmjUatdr53I0=",
"System.ComponentModel.Primitives.wasm": "sha256-cIclvUcc3+7njohC+DojkW/HKpzAeN25xY8FleKIiO8=",
"System.ComponentModel.TypeConverter.wasm": "sha256-wS53qtGrjFdmET80fNeg7JYvfUA9f7SCz7pzOclVJOE=",
"System.ComponentModel.wasm": "sha256-Kg+Te+dUBA6OiPS3uVj+Poyamhf9bMlcL96uc+bTYWc=",
"System.Console.wasm": "sha256-TsfvUgO+glJndyAzTUmQIvOuhALpCCVsoDLa/W7cLHY=",
"System.Drawing.Primitives.wasm": "sha256-XqgZh3MfZa4QaGEbv64dMpzz2uRDEyCEx5NUbo8Auq8=",
"System.Drawing.wasm": "sha256-0L6xqkbLn/8twTPEReAUP7rsxhmrRxdtIjn5trRfcPc=",
"System.Linq.wasm": "sha256-iFy7CBvVEGN9JOG+fF3euBO93hYIVMPvnorocAmJGuM=",
"System.Memory.wasm": "sha256-HxWkz7UwBh05wS2ZYKqwyRZs+fF4nOMIesDJVcSZKoQ=",
"System.Net.Http.wasm": "sha256-TW+R/9ZQjo0P5f/2dW64x5N9qU2TArQ0lBXZRc7Oivk=",
"System.Net.Primitives.wasm": "sha256-bo1gfuHZsgQyxWH2Favd8eHySb2ogILJUiH+LG7ewjI=",
"System.ObjectModel.wasm": "sha256-ERusItTwj+VEDDncoYkMrUEZM4vtFrJayqYPi+Qp/9A=",
"System.Private.CoreLib.wasm": "sha256-702ZjzwPSCq+z9E0H+J4v8Cy2fUscXoStUqgSa3CGPc=",
"System.Private.Uri.wasm": "sha256-0nO0Rp6weeQYlqM5fvWTZa0wFE7v3cW5phjQ7qslsns=",
"System.Runtime.InteropServices.JavaScript.wasm": "sha256-8v1T2sHtPVF+DFfHC56eeBb2CK3E+CJ2i/u+8hAjWtU=",
"System.Runtime.wasm": "sha256-lrYZzGsYelvkJh+Z8OAntURGLBn8/GcrwCJcVKAoGTE=",
"System.Text.Encodings.Web.wasm": "sha256-PPjgJMbaJy7HmAFbiVQDmuLd+9vm5X5Uxk2KptWctx4=",
"System.Text.Json.wasm": "sha256-0Heosb7dqIpKM7GLg3J0wh0MsIUxFOWhaA5XzQqWlwg=",
"System.Text.RegularExpressions.wasm": "sha256-3TnJ+gFbcLQWd64dQi9CTds871jRDrawlfFObiJJADY=",
"System.Threading.wasm": "sha256-uN3FUb3qxxLqHJ83qWylhlf66Ese+jaxRY8VZTBtqh8=",
"System.wasm": "sha256-42a4+5LjOVNJZ9qrtuq44hJuXPS03tHmXb7Kauk7pEg="
"Microsoft.JSInterop.wasm": "sha256-+Rt8iKATTcS4lJwzOVupnY95QLDIoKdW228hSCzBifg=",
"Microsoft.JSInterop.WebAssembly.wasm": "sha256-i8yLC1pzEZMAPAHK2MyunJW81S6Tpyvwka9LDZSylx8=",
"netstandard.wasm": "sha256-ZUPPVzItSJ6kQxePxmyjNKMpIpq9cu0CWfTcXwuTD8Y=",
"System.Collections.Concurrent.wasm": "sha256-eY0wISNmqfAwUodf2tWmR56xOJMdAIKMPjAf5RuF8iI=",
"System.Collections.wasm": "sha256-Nd5dBzwe5sMAhgYBw0GLV1ZQu+IB7KBzp6D0DHNnYD8=",
"System.ComponentModel.Primitives.wasm": "sha256-DbTdtMppKq/z9X2Gd5BpTjqoVlB4/wEcIWUnZjCPDwg=",
"System.ComponentModel.TypeConverter.wasm": "sha256-P/v4TPTiicH26OVGGFc4twp9DLgXvswtTRZTvyHcXfU=",
"System.ComponentModel.wasm": "sha256-3drUNG+pOzAK56sVBBB8sQXp80RmGsNYQXUk2WSIAD8=",
"System.Console.wasm": "sha256-o3EusYtFDONp4seIkwwCoouzESGE7LSgVKFBhlJfqhM=",
"System.Drawing.Primitives.wasm": "sha256-8WahEHwH/e/ZKABHeDD4pY03WOdoEI4RVyR8Q+gHLCY=",
"System.Drawing.wasm": "sha256-ZuZ8k1z5LAOStHl+UsKO5V2jZbq6xL9ElsqSaN7dW2M=",
"System.Linq.wasm": "sha256-1sCqTY59/5uGLmosJOECr6O6sZtx6w2Aw7frf0rWPeg=",
"System.Memory.wasm": "sha256-fVZAssLgL7tevXU7Wy0Oz/VwdRzqqyl3xk/1+6lMv84=",
"System.Net.Http.wasm": "sha256-Ls5eXfw6pkkDYFbEtz7+V8Cp+eNUuMbPrvdteQ872zY=",
"System.Net.Primitives.wasm": "sha256-ge1mBtNYiJT803KGOQF8HvAcldwdHJx5Zw8YKrEzwcA=",
"System.ObjectModel.wasm": "sha256-T9gl1z5n+I/OmNVEboES7HbPBVJBLTudxHs69qQrT1g=",
"System.Private.CoreLib.wasm": "sha256-++xeXipvHRCIAkVsNhyNiGMDMpOBuniS3TdfZxIotXs=",
"System.Private.Uri.wasm": "sha256-x0upnWlhinZ6yQK2tFGLYECLcfVE/cYtMWkSbevUGr8=",
"System.Runtime.InteropServices.JavaScript.wasm": "sha256-QK2uGp76fQnJOkX7c+FaQmA2Vih1Rqf53n/Q3kp8m3g=",
"System.Runtime.wasm": "sha256-HmxGjwLoHLHgzcQnAcfl1NG0NQ55dE/CINv7YPaPzXw=",
"System.Text.Encodings.Web.wasm": "sha256-r3ODjquYz1kv8rmEvFqbp3+c06aeq4b4whv1G4aX+to=",
"System.Text.Json.wasm": "sha256-MvHvEFQrfktdmK+D4GG85dzMad+eTPBkVlm4sPfTa3o=",
"System.Text.RegularExpressions.wasm": "sha256-stDxclhSlIn03K9QkMr+8gMVLPJL679NvRYPrYAC43k=",
"System.Threading.wasm": "sha256-WZ67IkKnMZXsZBKgPij/Wue9KklRaZeRmmjEHdtkPKo=",
"System.wasm": "sha256-j40bDq1kzFWVIkWKSn7zhVhRD7pPJwcCQwpWvGrmz9A="
}
},
"cacheBootResources": true,
Expand Down
Binary file modified docs/_framework/blazor.boot.json.br
Binary file not shown.
Binary file modified docs/_framework/blazor.boot.json.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_framework/blazor.webassembly.js

Large diffs are not rendered by default.

Binary file modified docs/_framework/blazor.webassembly.js.br
Binary file not shown.
Binary file modified docs/_framework/blazor.webassembly.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_framework/dotnet.js

Large diffs are not rendered by default.

Binary file modified docs/_framework/dotnet.js.br
Binary file not shown.
Binary file modified docs/_framework/dotnet.js.gz
Binary file not shown.
Binary file removed docs/_framework/dotnet.native.8.0.0.es56qai4cz.js.br
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file modified docs/_framework/dotnet.native.wasm
Binary file not shown.
Binary file modified docs/_framework/dotnet.native.wasm.br
Binary file not shown.
Binary file modified docs/_framework/dotnet.native.wasm.gz
Binary file not shown.
4 changes: 0 additions & 4 deletions docs/_framework/dotnet.runtime.8.0.0.g5kkqjfrax.js

This file was deleted.

Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions docs/_framework/dotnet.runtime.8.0.4.bu8xbqqd3z.js

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file modified docs/_framework/netstandard.wasm
Binary file not shown.
Binary file modified docs/_framework/netstandard.wasm.br
Binary file not shown.
Binary file modified docs/_framework/netstandard.wasm.gz
Binary file not shown.
Loading

0 comments on commit 2ddc86f

Please sign in to comment.