This commit is contained in:
Paul Schneider 2018-07-19 16:46:55 +02:00
commit 988949a14d
3 changed files with 5 additions and 10 deletions

View file

@ -3,7 +3,7 @@ using Microsoft.Extensions.Logging;
using Yavsc.Lib;
using Yavsc.Services;
namespace Yavsc.test
namespace test
{
public class Program
{
@ -14,7 +14,7 @@ namespace Yavsc.test
var hostengnine = host
.UseEnvironment("Development")
.UseServer("test")
.UseStartup<Startup>()
.UseStartup<test.Startup>()
.Build();
var app = hostengnine.Start();
@ -26,4 +26,4 @@ namespace Yavsc.test
logger.LogInformation("Finished");
}
}
}
}