private static void PrepareWorkerAssembly(IList <string> selectedWorkerTypes)
        {
            var workerTypeArguments = string.Join(" ", selectedWorkerTypes.Distinct().ToArray());
            var command             = SpatialCommand.SpatialPath;
            var arguments           = "build build-config " + workerTypeArguments;
            var applicationRootPath = Path.GetFullPath(Path.Combine(Application.dataPath, "../../.."));

            SpatialOsEditor.RunProcess(command, arguments, applicationRootPath);
        }