From ce479dc228cf474071e5cfdf933c1db7600c3e13 Mon Sep 17 00:00:00 2001 From: kaby76 Date: Sun, 24 Jan 2021 10:46:39 -0500 Subject: [PATCH 1/2] Fix for https://github.com/antlr/antlr4/issues/3049 --- runtime/CSharp/Antlr4.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/CSharp/Antlr4.csproj b/runtime/CSharp/Antlr4.csproj index 431c87330..0a7b1e006 100644 --- a/runtime/CSharp/Antlr4.csproj +++ b/runtime/CSharp/Antlr4.csproj @@ -32,6 +32,7 @@ false false Antlr4.Runtime + true true From cf16ec791ea32c1ccc7e2bace84c9d79f1788f84 Mon Sep 17 00:00:00 2001 From: Ivan Kochurkin Date: Mon, 25 Jan 2021 21:14:18 +0300 Subject: [PATCH 2/2] Fix missed version, https://github.com/antlr/antlr4/pull/2987#pullrequestreview-575417430 --- runtime/CSharp/Properties/AssemblyInfo.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/CSharp/Properties/AssemblyInfo.cs b/runtime/CSharp/Properties/AssemblyInfo.cs index d846533bb..4e719d09c 100644 --- a/runtime/CSharp/Properties/AssemblyInfo.cs +++ b/runtime/CSharp/Properties/AssemblyInfo.cs @@ -3,5 +3,7 @@ * can be found in the LICENSE.txt file in the project root. */ using System; +using System.Reflection; [assembly: CLSCompliant(true)] +[assembly: AssemblyVersion("4.9.1")] \ No newline at end of file