Tagged Questions
30
votes
7answers
7k views
How do I code a Mono Daemon
I'm trying to write a Mono C# daemon for linux.
I'd like to do a starts and stops of it when its done processing instead of just killing the process.
Does anyone have any examples of this?
Edit: I ...
11
votes
2answers
7k views
using mono-service to wrap a windows service on linux
Hi I'm trying to use mono-service2 to run a stock Windows Service Project from visual studio. I'm running this on debian with mono 2.0 and compiling with.
gmcs *.cs -pkg:dotnet
I try and start with ...
1
vote
1answer
68 views
How to detect if I'm running in mono-service?
How can I detect I'm running under mono-service2? (in C#/.NET 3.5, running mono 2.6.7 on ubuntu 11)
Type.GetType("Mono.Runtime") tells me I'm running in mono, so that part is ok. But ...
0
votes
1answer
223 views
mono-service2 on linux for a Dotnet4 Service
Basically i have a dotnet 4 console application that i want to convert to a linux service. I have tested the console application on the latest build of mono and it works. I then converted the console ...