| 12345678910111213141516171819202122232425 |
- buildAllDebug
- Builds all projects with debug configuration
- buildAllRelease
- Builds all projects with release configuration
- buildAllTools
- Builds all projects with tools configuration
- The debug vs release build is simply what people develop in vs the actual server.
- The release build contains various optimizations, while the debug build contains debugging tools.
- If you're mapping, use the release or tools build as it will run smoother with less crashes.
- runQuickAll
- Runs the client and server without building
- runQuickClient
- Runs the client without building
- runQuickServer
- Runs the server without building
- runTests
- Runs the unit tests, makes sure various C# systems work as intended
- runTestsIntegration
- Runs the integration tests, makes sure various C# systems work as intended
- runTestsYAML
- Runs the YAML linter and finds issues with the YAML files that you probably wouldn't otherwise
|