Skip to content

Commit

Permalink
🐛 fix(Wpf/Winform): error on AddBlazorWebViewDeveloperTools (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem authored Jan 3, 2024
1 parent 5bfdbc9 commit b52b74c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Content/BlazorWinform/MainFrom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public MainFrom()

//-:cnd:noEmit
#if DEBUG
builder.Services.AddBlazorWebViewDeveloperTools();
services.AddBlazorWebViewDeveloperTools();
#endif
//+:cnd:noEmit

Expand Down
2 changes: 1 addition & 1 deletion src/Content/BlazorWpf/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public MainWindow()

//-:cnd:noEmit
#if DEBUG
builder.Services.AddBlazorWebViewDeveloperTools();
serviceCollection.AddBlazorWebViewDeveloperTools();
#endif
//+:cnd:noEmit

Expand Down

0 comments on commit b52b74c

Please sign in to comment.