-
Notifications
You must be signed in to change notification settings - Fork 7
/
Searchlight.nuspec
40 lines (39 loc) · 1.63 KB
/
Searchlight.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0"?>
<package >
<metadata>
<id>Searchlight</id>
<version>1.0.2</version>
<title>Searchlight</title>
<authors>Ted Spence</authors>
<owners>Ted Spence</owners>
<license type="file">docs/LICENSE</license>
<projectUrl>https://github.com/tspence/csharp-searchlight</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<readme>docs/README.md</readme>
<description>
A lightweight, secure, and human readable domain-specific query language for searching through databases and in-memory collections.
Works alongside REST, GraphQL, and OData to make human readable API queries possible.
</description>
<summary>A friendly and readable domain specific query language for your API.</summary>
<icon>docs/icons8-searchlight-90.png</icon>
<releaseNotes>
# 1.0.2
September 10, 2023
* Added support for autocomplete.
* Fixed issues with handling of enum clauses in queries.
</releaseNotes>
<copyright>Copyright 2013 - 2023</copyright>
<tags>REST query language abstract syntax tree parser sql-injection protection friendly readable domain-specific DSL</tags>
<repository type="git" url="https://github.com/tspence/csharp-searchlight" />
<dependencies>
<group targetFramework=".NETStandard2.0"/>
</dependencies>
</metadata>
<files>
<file src=".\LICENSE" target="docs/LICENSE"/>
<file src=".\README.md" target="docs/README.md"/>
<file src=".\icons8-searchlight-90.png" target="docs/icons8-searchlight-90.png"/>
<file src=".\PatchNotes.md" target="docs/PatchNotes.md"/>
<file src="src\Searchlight\bin\Release\netstandard2.0\*" target="lib\netstandard20" />
</files>
</package>