Skip to content
Open
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: 2 additions & 2 deletions src/SQLitePCLRaw.core/SQLitePCLRaw.core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;$(tfm_net)</TargetFrameworks>
<LangVersion>7.3</LangVersion>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
Expand Down Expand Up @@ -35,7 +35,7 @@
<Compile Include="IGetFunctionPointer.cs" />
</ItemGroup>

<ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Memory" Version="4.6.3" />
</ItemGroup>

Expand Down
2 changes: 0 additions & 2 deletions todo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ investigate GC.AddMemoryPressure()

investigate new utf8 things in System.Memory pkg

multi-target to avoid dep on System.Memory for netcore2.1+ ?

need some tests for sqlite-ish case insensitivity of
collation names

Expand Down