c# 6.0 - Can one install a vNext (C# 6) console app as a Windows service -
in previous versions of .net, there different methods of creating project run console app or installed service.
things topshelf or other approaches like: .net console application windows service
this nice convenience development , later deployment. put vnext console app using similar approach accepted answer here: .net console application windows service. issue vnext runs things in different way. if create output, no longer gives exe install. instead nuget package , .cmd file tell dnx host application. command file looks like: dnx --appbase "$(dirname $0)" microsoft.framework.applicationhost my.vnext.service $@
so question is: there way install thing windows service given new console application approach?
Comments
Post a Comment