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
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,10 +365,8 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)

![.NET AOT Ready](https://img.shields.io/badge/.NET-AOT_Ready-blue)
![.NET 10.0](https://img.shields.io/badge/.NET-10.0-brightgreen)
![.NET 9.0](https://img.shields.io/badge/.NET-9.0-brightgreen)
![.NET 8.0](https://img.shields.io/badge/.NET-8.0-brightgreen)
![.NET 7.0](https://img.shields.io/badge/.NET-7.0-green)
![.NET 6.0](https://img.shields.io/badge/.NET-6.0-green)
![.NET Standard 2.0](https://img.shields.io/badge/.NET-Standard_2.0-green)

To integrate with [LinqToDB](https://github.com/linq2db/linq2db), install the specialized extension package:

Expand Down
176 changes: 0 additions & 176 deletions src/Compatibility/Index.cs

This file was deleted.

141 changes: 0 additions & 141 deletions src/Compatibility/Range.cs

This file was deleted.

18 changes: 0 additions & 18 deletions src/DB.Shared.Tests/DB.Shared.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,6 @@
<RootNamespace>ByteAether.Ulid.DB.Shared.Tests</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/>
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

<PackageReference Include="xunit" Version="2.9.3"/>
</ItemGroup>

<ItemGroup>
<Using Include="Xunit"/>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\DB.Shared\DB.Shared.csproj" />
<ProjectReference Include="..\Ulid\Impl.csproj" />
Expand Down
6 changes: 5 additions & 1 deletion src/DB.Shared/DB.Shared.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net8.0;net6.0;netstandard2.0</TargetFrameworks>
<OutputType>library</OutputType>
<IsAotCompatible>true</IsAotCompatible>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand All @@ -18,4 +18,8 @@
<Compile Include="..\Compatibility\**\*.cs" Link="Compatibility\%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Bcl.Memory" Version="10.0.9" />
</ItemGroup>

</Project>
Loading