Merge pull request #975 from davidroth/missing-usings

Fix build by adding necessary using directives for async and DI setup.
This commit is contained in:
Florian Rappl
2025-12-11 10:55:17 +01:00
committed by GitHub
2 changed files with 3 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
using ElectronNET.API;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
namespace ElectronNET.Samples.ElectronHostHook.Controllers
{

View File

@@ -1,4 +1,6 @@
using ElectronNET.API;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
namespace ElectronNET.Samples.ElectronHostHook
{