Skip to content

Commit

Permalink
Updating package publishing, finishing off docs (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwhitfield authored Dec 30, 2022
1 parent 4a67828 commit 9f48efb
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
with:
fetch-depth: '0'
- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5
uses: NuGet/setup-nuget@v1.1.1
- run: |
./.github/workflows/AutoVersion.ps1
shell: pwsh
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Sequel Filter is a C# library that allows for filtering using a SQL-like syntax.
## Grammar Features ✍

* Basic comparisons with support for loose type matching
* Combinational logic with AND / OR
* Support for IN, LIKE, BETWEEN, IS NULL SQL operators
* Support for searching child enumerables with HAS_NONE, HAS_ANY, HAS_SINGLE
* Combinational logic with `AND` / `OR`
* Support for `IN`, `LIKE`, `BETWEEN` and `IS NULL` SQL operators
* Support for searching child enumerables with `HAS_NONE`, `HAS_ANY`, `HAS_SINGLE`

# Documentation 📖

Expand Down
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h1><a href="{{ "/" | absolute_url }}"><img src="{{ "/assets/full_logo.png" | re
<p class="view">
Get the library via nuget:
<ul>
<li>TO-DO</li>
<li><a href="https://www.nuget.org/packages/SequelFilter">nuget package</a></li>
</ul>
</p>

Expand Down
10 changes: 9 additions & 1 deletion docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,12 @@ I am really excited to see what you come up with to take this project forward -

## Solution Layout 🗃

** info coming **
The solution is fairly simple, consisting of just the library and it's tests.

In the main project, the Irony based grammary and main entry points are in the root folder.

The 'Comparison' folder contains the code that facilitates loosely-typed value comparisons.

The 'NodeTransforms' folder contains the code responsible for converting parsed syntax trees into executable delegates.

The 'Resolvers' folder contains the various resolvers that allow field references to be resolved from input object.
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Sequel Filter is a C# library that allows for filtering using a SQL-like syntax.
## Grammar Features ✍

* Basic comparisons with support for loose type matching
* Combinational logic with AND / OR
* Support for IN, LIKE, BETWEEN, IS NULL SQL operators
* Support for searching child enumerables with HAS_NONE, HAS_ANY, HAS_SINGLE
* Combinational logic with `AND` / `OR`
* Support for `IN`, `LIKE`, `BETWEEN` and `IS NULL` SQL operators
* Support for searching child enumerables with `HAS_NONE`, `HAS_ANY`, `HAS_SINGLE`

# Documentation Sections 📖

Expand Down
1 change: 1 addition & 0 deletions src/SequelFilter/SequelFilter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<RepositoryUrl>https://github.com/mattwhitfield/SequelFilter</RepositoryUrl>
<PackageIcon>nuget_logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression> MIT</PackageLicenseExpression>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 9f48efb

Please sign in to comment.