From 1701d769d327e2d4d6f44d79d6c38bae94c66620 Mon Sep 17 00:00:00 2001 From: Terence Parr Date: Sat, 4 Nov 2017 09:20:11 -0700 Subject: [PATCH] Update antlr-project-testing.md --- doc/antlr-project-testing.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/antlr-project-testing.md b/doc/antlr-project-testing.md index c83167b5f9..335f2da2b4 100644 --- a/doc/antlr-project-testing.md +++ b/doc/antlr-project-testing.md @@ -59,8 +59,7 @@ Now, make sure C# runtime is built and installed locally. ```bash cd ~/antlr/code/antlr4/runtime/CSharp/runtime/CSharp # kill previous ones manually as "xbuild /t:Clean" didn't seem to do it -rm Antlr4.Runtime/bin/net20/Release/Antlr4.Runtime.dll -rm Antlr4.Runtime/obj/net20/Release/Antlr4.Runtime.dll +find . -name '*.dll' -exec rm {} \; # build xbuild /p:Configuration=Release Antlr4.Runtime/Antlr4.Runtime.mono.csproj ```