Update to development version 4.4.1
This commit is contained in:
parent
e811a63b90
commit
f02285edd7
|
@ -1 +1 @@
|
|||
$AntlrVersion = "4.4.0-dev"
|
||||
$AntlrVersion = "4.4.1-dev"
|
||||
|
|
|
@ -69,6 +69,6 @@ using System.Runtime.InteropServices;
|
|||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("4.4.0.0")]
|
||||
#if !COMPACT
|
||||
[assembly: AssemblyFileVersion("4.4.0.0")]
|
||||
[assembly: AssemblyInformationalVersion("4.4.0-dev")]
|
||||
[assembly: AssemblyFileVersion("4.4.1.0")]
|
||||
[assembly: AssemblyInformationalVersion("4.4.1-dev")]
|
||||
#endif
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
<!-- Folder containing Antlr4BuildTasks.net35.dll -->
|
||||
<Antlr4BuildTaskPath>.</Antlr4BuildTaskPath>
|
||||
<!-- Path to the ANTLR tool itself -->
|
||||
<Antlr4ToolPath>..\tools\antlr4-csharp-4.4-SNAPSHOT-complete.jar</Antlr4ToolPath>
|
||||
<Antlr4ToolPath>..\tools\antlr4-csharp-4.4.1-SNAPSHOT-complete.jar</Antlr4ToolPath>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
<PropertyGroup>
|
||||
<Antlr4BuildTaskLocation Condition="'$(Antlr4BuildTaskPath)'==''">$(MSBuildBinPath)</Antlr4BuildTaskLocation>
|
||||
<Antlr4BuildTaskLocation Condition="'$(Antlr4BuildTaskPath)'!=''">$(Antlr4BuildTaskPath)</Antlr4BuildTaskLocation>
|
||||
<Antlr4ToolLocation Condition="'$(Antlr4ToolPath)'==''">$(MSBuildBinPath)\Antlr4\antlr4-csharp-4.4-SNAPSHOT-complete.jar</Antlr4ToolLocation>
|
||||
<Antlr4ToolLocation Condition="'$(Antlr4ToolPath)'==''">$(MSBuildBinPath)\Antlr4\antlr4-csharp-4.4.1-SNAPSHOT-complete.jar</Antlr4ToolLocation>
|
||||
<Antlr4ToolLocation Condition="'$(Antlr4ToolPath)'!=''">$(Antlr4ToolPath)</Antlr4ToolLocation>
|
||||
|
||||
<Antlr4JavaVendor Condition="'$(Antlr4JavaVendor)'==''">JavaSoft</Antlr4JavaVendor>
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
<!-- Folder containing Antlr4BuildTasks.net40.dll -->
|
||||
<Antlr4BuildTaskPath>.</Antlr4BuildTaskPath>
|
||||
<!-- Path to the ANTLR tool itself -->
|
||||
<Antlr4ToolPath>..\tools\antlr4-csharp-4.4-SNAPSHOT-complete.jar</Antlr4ToolPath>
|
||||
<Antlr4ToolPath>..\tools\antlr4-csharp-4.4.1-SNAPSHOT-complete.jar</Antlr4ToolPath>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
<PropertyGroup>
|
||||
<Antlr4BuildTaskLocation Condition="'$(Antlr4BuildTaskPath)'==''">$(MSBuildBinPath)</Antlr4BuildTaskLocation>
|
||||
<Antlr4BuildTaskLocation Condition="'$(Antlr4BuildTaskPath)'!=''">$(Antlr4BuildTaskPath)</Antlr4BuildTaskLocation>
|
||||
<Antlr4ToolLocation Condition="'$(Antlr4ToolPath)'==''">$(MSBuildBinPath)\Antlr4\antlr4-csharp-4.4-SNAPSHOT-complete.jar</Antlr4ToolLocation>
|
||||
<Antlr4ToolLocation Condition="'$(Antlr4ToolPath)'==''">$(MSBuildBinPath)\Antlr4\antlr4-csharp-4.4.1-SNAPSHOT-complete.jar</Antlr4ToolLocation>
|
||||
<Antlr4ToolLocation Condition="'$(Antlr4ToolPath)'!=''">$(Antlr4ToolPath)</Antlr4ToolLocation>
|
||||
|
||||
<Antlr4JavaVendor Condition="'$(Antlr4JavaVendor)'==''">JavaSoft</Antlr4JavaVendor>
|
||||
|
|
|
@ -71,5 +71,5 @@ using System.Runtime.InteropServices;
|
|||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("4.4.0.0")]
|
||||
[assembly: AssemblyFileVersion("4.4.0.0")]
|
||||
[assembly: AssemblyInformationalVersion("4.4.0-dev")]
|
||||
[assembly: AssemblyFileVersion("4.4.1.0")]
|
||||
[assembly: AssemblyInformationalVersion("4.4.1-dev")]
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.tunnelvisionlabs</groupId>
|
||||
<artifactId>antlr4-csharp</artifactId>
|
||||
<version>4.4-SNAPSHOT</version>
|
||||
<version>4.4.1-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>ANTLR 4 Target C#</name>
|
||||
|
@ -74,13 +74,13 @@
|
|||
<dependency>
|
||||
<groupId>com.tunnelvisionlabs</groupId>
|
||||
<artifactId>antlr4</artifactId>
|
||||
<version>4.3</version>
|
||||
<version>4.4.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.tunnelvisionlabs</groupId>
|
||||
<artifactId>antlr4-runtime</artifactId>
|
||||
<version>4.3</version>
|
||||
<version>4.4.1-SNAPSHOT</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
Loading…
Reference in New Issue