Markus

Results 30 comments of Markus

I run ANTLR-CS from console, for that I wrote following batch command: ``` @echo off REM create absolute classpath SET oldClasspath=%CLASSPATH% SET cp=%~dp0lib\antlr4-csharp-4.0.1-SNAPSHOT-complete.jar REM SET cp=%~dp0lib\antlr4-csharp-4.2.2-SNAPSHOT-complete.jar SET CLASSPATH=.;%cp%;%CLASSPATH% echo Generating...

Vanilla ANTLR only contains the java target, thus can only generate java based parsers. ANTLR-CS is a complete implementation of ANTLR and consists of the C# target and C# runtime....

Hi cnayan! The namespace should be set right, you can check it in the parser.cs at the top, there should be a using System.Collections.Generic;. My guess is that you targeting...

At the moment `SmartCmdArgs.dll` only references VS2015 dependencies. With VS2017 we added a dynamically loaded assembly `SmartCmdArgs15.dll` which implements the new project system. This also worked well with VS2019. Now...

Thanks for the PR :) We abandoned the test project some time ago because we couldn't get the VSTestHost working on VS2017. For the same reason it was never adapted...

Does the .Net Update break support with older VS versions? We always try to support 2015, 2017 and 2019. However, this is a real pain to do and it's always...

About the changes with the package reference. Could you please describe shortly why the changes and what does it change? I don't know what PackageReferences are ;)

We don't have any long term features in the pipeline. We consider the extension 'feature complete' right now (well we did this in the past as well, but our users...

Just tried to merge your PR but the SmartCmdArgs.csproj as no Nuget references anymore. Did I miss something?