/// <summary> /// Merges the Configurations in appParameters and serializes them into the right place within driverFolderPath, /// assuming /// that points to a Driver's working directory. /// </summary> /// <param name="appParameters"></param> /// <param name="driverFolderPath"></param> internal void CreateDriverConfiguration(AppParameters appParameters, string driverFolderPath) { var driverConfiguration = Configurations.Merge(appParameters.DriverConfigurations.ToArray()); _configurationSerializer.ToFile(driverConfiguration, Path.Combine(driverFolderPath, _fileNames.GetClrDriverConfigurationPath())); // TODO: Remove once we cleaned up the Evaluator to not expect this [REEF-217] _configurationSerializer.ToFile(driverConfiguration, Path.Combine(driverFolderPath, _fileNames.GetGlobalFolderPath(), _fileNames.GetClrBridgeConfigurationName())); }