Skip to content

Commit 4e6dae0

Browse files
fixes
1 parent b5dabd4 commit 4e6dae0

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
bin/
22
obj/
33
*.nupkg
4-
*.exe
4+
*.exe
5+
icon.png

EsotericDevZone.RuleBasedParser.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,8 @@
8484
<ItemGroup>
8585
<None Include="packages.config" />
8686
</ItemGroup>
87+
<ItemGroup>
88+
<None Include="esodev2.ico" />
89+
</ItemGroup>
8790
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8891
</Project>

Parser.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ public object Parse(string input)
4343

4444
var result = LookFor(RootRuleKey, tokens, 0);
4545
if(result!=null)
46-
{
47-
46+
{
4847
if(result.Position!=0 || result.TokensCount!=tokens.Count)
4948
{
5049
throw new ParseException(tokens[0], "Insuficient tokens");

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.2.0")]
36-
[assembly: AssemblyFileVersion("1.0.2.0")]
35+
[assembly: AssemblyVersion("1.0.3.0")]
36+
[assembly: AssemblyFileVersion("1.0.3.0")]

esodev2.ico

100 KB
Binary file not shown.

0 commit comments

Comments
 (0)