Skip to content

Commit 7f507a6

Browse files
authored
Merge pull request #975 from davidroth/missing-usings
Fix build by adding necessary using directives for async and DI setup.
2 parents 81b3793 + 5f76804 commit 7f507a6

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/ElectronNET.Samples.ElectronHostHook/Controllers/HomeController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using ElectronNET.API;
22
using Microsoft.AspNetCore.Mvc;
3+
using System.Threading.Tasks;
34

45
namespace ElectronNET.Samples.ElectronHostHook.Controllers
56
{

src/ElectronNET.Samples.ElectronHostHook/Program.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
using ElectronNET.API;
2+
using Microsoft.AspNetCore.Builder;
3+
using Microsoft.Extensions.DependencyInjection;
24

35
namespace ElectronNET.Samples.ElectronHostHook
46
{

0 commit comments

Comments
 (0)