I'm trying to use Roslyn to create a parameter that looks something like this:
[MyAttribute("some_param")]
Now I can easily create the AttributeSyntax but can't figure out how to add an argument to the ArgumentList porperty using the .AddArguments(ExpressionSyntax) method. I'm just not sure what I need to do to create the appropriate expression.