Can I create a server Conquer on linux hosting ?
Mono would allow a faster deploy time. Obviously dotnet core is the better option but it has missing features, like Windows Forms because it's obviously meant to run on any platform, and considering the question and who asked it, it's pretty likely they don't have enough knowledge to port the server themselves.Quote:
You'd have to port your server to Dotnet core.
The missing features of .NET Core are not really required for a true server (.NET Core is targeted for servers/services). But yes, would be easier to run it on Mono without doing much changes.Quote:
Mono would allow a faster deploy time. Obviously dotnet core is the better option but it has missing features, like Windows Forms because it's obviously meant to run on any platform, and considering the question and who asked it, it's pretty likely they don't have enough knowledge to port the server themselves.
That is true for a true server. However from my experience most Egyptian and generally people that don't know much about programming want a server with GUI.Quote:
The missing features of .NET Core are not really required for a true server (.NET Core is targeted for servers/services). But yes, would be easier to run it on Mono without doing much changes.
[Only registered and activated users can see links. Click Here To Register...]:Quote:
That is true for a true server. However from my experience most Egyptian and generally people that don't know much about programming want a server with GUI.
I'm not sure what the behavior would be for trying to run a Windows Forms application with Mono in an environment without a window manager. I expect it would simply crash though.
[Only registered and activated users can see links. Click Here To Register...]:Quote:
System.Windows.Forms is part of a standard Mono installation.
However, from what I've heard, it's still pretty shitty.Quote:
Support for Windows Forms 2.0 is complete. At this point, we are largely just fixing bugs and polishing our code.
I didn't say Windows Forms doesn't come with Mono. I just said that I am not sure what would happen if you try to run a Windows Forms application in an environment that is console-only (ie without X11 or Wayland or anything like that).Quote:
[Only registered and activated users can see links. Click Here To Register...]:
[Only registered and activated users can see links. Click Here To Register...]:
However, from what I've heard, it's still pretty shitty.
Unfortunately, a lot of the servers released here use a lot of kernel32 imports or other Windows-only stuff (for no good reason), but I don't think replacing those parts will take much effort.