-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebNet.LiteGraphExtensions.GraphRepositories.csproj
More file actions
37 lines (32 loc) · 1.74 KB
/
WebNet.LiteGraphExtensions.GraphRepositories.csproj
File metadata and controls
37 lines (32 loc) · 1.74 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DefaultItemExcludes>$(DefaultItemExcludes);Tests\**</DefaultItemExcludes>
<!-- NuGet Package Metadata -->
<PackageId>WebNet.LiteGraphExtensions.GraphRepositories</PackageId>
<Title>LiteGraph Repository Extensions</Title>
<Description>Graph repository implementations for the LiteGraph library. Provides persistent storage backends including DuckDB (SQL/columnar), FastDB (NoSQL/collections), and LiteDB (NoSQL/documents) for graph data structures.</Description>
<Authors>WebNet</Authors>
<Company>WebNet</Company>
<PackageTags>litegraph;graph;database;repository;duckdb;fastdb;litedb;nosql;sql;graph-database</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/jojodev1/WebNet.LiteGraphExtensions.GraphRepositories</PackageProjectUrl>
<RepositoryUrl>https://github.com/jojodev1/WebNet.LiteGraphExtensions.GraphRepositories</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DuckDB.NET.Data.Full" Version="1.4.3" />
<PackageReference Include="LiteDB" Version="5.0.21" />
<PackageReference Include="LiteGraph" Version="5.0.2" />
<PackageReference Include="Stellar.FastDB" Version="1.1.1" />
</ItemGroup>
</Project>