Update to .NET Core 3.0

This commit is contained in:
Robert Muehsig
2019-10-03 22:30:58 +02:00
parent 5157561dc6
commit e25b89ff6a
14 changed files with 40 additions and 33 deletions

View File

@@ -8,9 +8,9 @@ namespace ElectronNET.WebApp.Controllers
{
public class TrayController : Controller
{
private readonly IHostingEnvironment _env;
private readonly IWebHostEnvironment _env;
public TrayController(IHostingEnvironment env)
public TrayController(IWebHostEnvironment env)
{
_env = env;
}