Forums › 💬 NodeCanvas › ⚙️ Support › Windows Store App › Reply To: Windows Store App
I was able to eliminate the MethodAccessExceptions by making the TaskAgent class public, i.e. in Task.cs, line 44:
public class TaskAgent : BBVariable{
I also removed the initializer on the member (since serialization takes care of creating the object), changing
private TaskAgent taskAgent = new TaskAgent();
to just
private TaskAgent taskAgent;
Not sure why this would only affect WSA builds.
Todd