I have an Antlr grammar. It is helpfully generating some files -- for example the one below.
bin/Debug/CalculatorExpressionParserBaseListener.cs
The only problem is that what I would really like to do is to put it into another directory, say
antlrGenerated/CalculatorExpressionParserBaseListener.cs
Can I tell Antlr to do that?
I understand that I could just move the files. But that's an annoying extra step to have to do every time they are regenerated.