tst: passthrough-dotnet: fix problem with vshost ignore Main return value

This commit is contained in:
Bill Zissimopoulos 2017-04-07 11:03:58 -07:00
parent 4d6fc3c848
commit 9a02a46cf4

View File

@ -37,9 +37,9 @@ namespace passthrough
class Program
{
static int Main(string[] args)
static void Main(string[] args)
{
return new PtfsService().Run();
Environment.ExitCode = new PtfsService().Run();
}
}
}