Fire-Dragon-DoL
Member
Hello!
I'm a software developer and having the build-run-buildscripts process is just an annoyance. I'd rather build the scripts as part of the (existing) Makefile. I see two options:
- A command line option to compile the scripts before the server is started (I don't think this is supported)
- Move the scripts directly to the "server" code and compile them directly in the executable.
I don't care about being able to edit the scripts once the server is started, I'll have a deployment pipeline for that purpose. What I do care though is getting compile-time errors for the scripts when I compile, instead of when I run the server.
I'd like to also add some automated testing for some core part of my scripts, as such having those in the traditional build pipeline of a C# software makes things easier.
Did anyone achieve this already and have some well-known gotchas to mention before I attempt this feat completely clueless?

I'm a software developer and having the build-run-buildscripts process is just an annoyance. I'd rather build the scripts as part of the (existing) Makefile. I see two options:
- A command line option to compile the scripts before the server is started (I don't think this is supported)
- Move the scripts directly to the "server" code and compile them directly in the executable.
I don't care about being able to edit the scripts once the server is started, I'll have a deployment pipeline for that purpose. What I do care though is getting compile-time errors for the scripts when I compile, instead of when I run the server.
I'd like to also add some automated testing for some core part of my scripts, as such having those in the traditional build pipeline of a C# software makes things easier.
Did anyone achieve this already and have some well-known gotchas to mention before I attempt this feat completely clueless?