Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022-2024 Matthias Gernand
Copyright (c) 2022-2026 Matthias Gernand

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
50 changes: 0 additions & 50 deletions LiteDB.Queryable.sln

This file was deleted.

15 changes: 15 additions & 0 deletions LiteDB.Queryable.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Solution>
<Folder Name="/.items/">
<File Path=".editorconfig" />
<File Path=".gitignore" />
<File Path="LICENSE" />
<File Path="README.md" />
</Folder>
<Folder Name="/src/">
<File Path="src/Directory.Build.props" />
<Project Path="src/LiteDB.Queryable/LiteDB.Queryable.csproj" />
</Folder>
<Folder Name="/tests/">
<Project Path="tests/LiteDB.Queryable.UnitTests/LiteDB.Queryable.UnitTests.csproj" />
</Folder>
</Solution>
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
__I am leaving GitHub__

Please follow me on [Codeberg](https://codeberg.org/mgernand)!
You can also find the sources of this repository there!

Onwards! ✊

# LiteDB.Queryable

An IQueryable wrapper implementation for LiteDB with additional async extensions.
Expand Down
13 changes: 7 additions & 6 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<PackageOutputPath>..\..\package-output\$(Configuration)</PackageOutputPath>
<PackageOutputPath>..\..\Packages\$(Configuration)</PackageOutputPath>
<IncludeSymbols>false</IncludeSymbols>
<Authors>Matthias Gernand</Authors>
<Description>An IQueryable wrapper implementation for LiteDB with additional async extensions.</Description>
Expand All @@ -27,17 +27,18 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>10.0.0</VersionPrefix>
<VersionPrefix>10.0.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<FileVersion>$(VersionPrefix)</FileVersion>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<InformationalVersion>$(Version)</InformationalVersion>
<Version>$(VersionPrefix)$(VersionSuffix)</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<AssemblyInformationalVersion>$(Version)</AssemblyInformationalVersion>
<FileVersion>$(Version)</FileVersion>
</PropertyGroup>

<PropertyGroup>
<Product>LiteDB.Queryable</Product>
<AssemblyTitle>LiteDB.Queryable</AssemblyTitle>
<Copyright>Copyright © 2022-2025 Matthias Gernand. All rights reserved.</Copyright>
<Copyright>Copyright © 2022-2026 Matthias Gernand. All rights reserved.</Copyright>
</PropertyGroup>

</Project>
3 changes: 2 additions & 1 deletion src/LiteDB.Queryable/LiteDB.Queryable.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" PrivateAssets="All" />
<PackageReference Include="LiteDB" Version="5.0.21" />
<PackageReference Include="LiteDB.Async" Version="0.1.8" />
<PackageReference Include="System.Linq.Async" Version="6.0.3" Aliases="SystemLinqAsyncLibrary" />
<PackageReference Include="Microsoft.Bcl.Memory" Version="10.0.5" />
<PackageReference Include="System.Linq.Async" Version="[6.0.3]" Aliases="SystemLinqAsyncLibrary" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="8.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="NUnit" Version="4.4.0" />
<PackageReference Include="NUnit3TestAdapter" Version="6.0.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.11.2">
<PackageReference Include="FluentAssertions" Version="8.9.0" />
<PackageReference Include="Microsoft.Bcl.Memory" Version="10.0.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.12.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PackageReference Include="coverlet.collector" Version="8.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down