I added a c# dll as external reference and added one of its methods to my project. That method expects an input parameter which is named as 'Inputs' and output is a List<workitem>. When I build the project it errors out in STEP 2 with the error Syntax error, expected: identifier I looked at the IL but couldn't figure out, so pasting it here: ExternalProcessClient VSTSLibrary
EndExternalProcessClient Appreciate if someone can help!! |
Parsing the IL would give the error you mentioned because you are trying to use one of the reserve words of Graphite Studio. If you look at Reference Document - Graphite Studio Reserve Words , Inputs is one of the Reserve Words there. So, make sure you don't use Graphite Studio reserve words while naming your entities or properties. In your case perform the following steps and this time your build should succeed |