Skip to content

Commit

Permalink
feat(deps): update project dependencies #9108 (#9109)
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi authored Nov 5, 2024
1 parent 06fe6d0 commit 9c7b977
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"vpk": {
"version": "0.0.626",
"version": "0.0.869",
"commands": [
"vpk"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Wpf" Version="8.0.92" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2849.39" />
<PackageReference Include="Velopack" Version="0.0.626" />
<PackageReference Include="Velopack" Version="0.0.869" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />

<Content Include="..\Bit.BlazorUI.Demo.Client.Maui\wwwroot\index.html" Link="wwwroot\index.html">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,13 @@ async void CheckForAppInsightsReady()
{
try
{
var appInsightsVersion = await jsRuntime!.InvokeAsync<int>("eval", "window.appInsights.version");
appInsightsReady.SetResult();
break;
var appInsightsInitialized = await jsRuntime!.InvokeAsync<bool>("window.hasOwnProperty", "appInsights");
var appInsightsBlazorWrapperModuleInitialized = await jsRuntime!.InvokeAsync<bool>("window.hasOwnProperty", "blazorApplicationInsights");
if (appInsightsInitialized && appInsightsBlazorWrapperModuleInitialized)
{
appInsightsReady.SetResult();
break;
}
}
catch { await Task.Delay(250); }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"vpk": {
"version": "0.0.626",
"version": "0.0.869",
"commands": [
"vpk"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageVersion Include="Bit.Bswup" Version="8.12.0-pre-09" />
<PackageVersion Include="Bit.CodeAnalyzers" Version="8.12.0-pre-09" />
<PackageVersion Include="Bit.SourceGenerators" Version="8.12.0-pre-09" />
<PackageVersion Include="libphonenumber-csharp" Version="8.13.48" />
<PackageVersion Include="libphonenumber-csharp" Version="8.13.49" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.10" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.10" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="8.0.10" />
Expand All @@ -21,7 +21,7 @@
<PackageVersion Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="$(MauiVersion)" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebView.Wpf" Version="8.0.92" />
<PackageVersion Include="Microsoft.Web.WebView2" Version="1.0.2849.39" />
<PackageVersion Include="Velopack" Version="0.0.626" />
<PackageVersion Include="Velopack" Version="0.0.869" />
<PackageVersion Include="Microsoft.Extensions.Logging.Configuration" Version="8.0.1" />
<PackageVersion Include="Microsoft.Extensions.Logging.Debug" Version="8.0.1" />
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
Expand Down

0 comments on commit 9c7b977

Please sign in to comment.