src: dotnet: testing

This commit is contained in:
Bill Zissimopoulos
2017-04-07 10:52:52 -07:00
parent 964f2eed69
commit 4d6fc3c848
2 changed files with 9 additions and 6 deletions

View File

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