Some of them are straightforward to fix by using or extending ReflectionTools. For example the error in Graph.cs on line 652.
Changing bbParams.Add( typeof(Task).GetField("taskAgent", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(task) as BBParameter );
To bbParams.Add( typeof(Task).RTGetField("taskAgent").GetValue(task) as BBParameter );
Some of them not so much without digging into the code more.
Login
Register
By registering on this website you agree to our Privacy Policy.