Skip to content

Commit

Permalink
Publishing updates
Browse files Browse the repository at this point in the history
  • Loading branch information
elamaunt committed Jun 22, 2021
1 parent bcb2c7d commit 56e1956
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
15 changes: 11 additions & 4 deletions src/GDShrapt.Reader/GDShrapt.Reader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,31 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>1.0-prealpha</Version>
<Version>2.0.0-alpha</Version>
<Authors>elamaunt</Authors>
<Product>GDShrapt</Product>
<Description>GDShrapt.Reader is .Net library and object-oriented one-pass parser of GDScript. It can build a lexical tree of GDScript code or generate a new code from scratch.
Is free to use.

</Description>
Usage: Just create GDScriptReader instance and call methods from it.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl></PackageProjectUrl>
<Copyright>elamaunt</Copyright>
<RepositoryUrl>https://github.com/elamaunt/GDShrapt</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>GDShrapt GDScript reader parser codegeneration Godot lexical analyzer</PackageTags>
<AssemblyVersion>1.0</AssemblyVersion>
<FileVersion>1.0</FileVersion>
<AssemblyVersion>2.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
<Compile Remove="GDExpressionWalker.cs" />
<Compile Remove="GDTreeWalker.cs" />
<Compile Remove="IExpressionsNodeVisitor.cs" />
<Compile Remove="INodeVisitor.cs" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
Expand Down
4 changes: 1 addition & 3 deletions src/GDShrapt.Reader/GDTreeWalker.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using System.Collections.Generic;

namespace GDShrapt.Reader
namespace GDShrapt.Reader
{
public class GDTreeWalker : GDExpressionWalker
{
Expand Down

0 comments on commit 56e1956

Please sign in to comment.