Skip to content
Merged
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
10 changes: 10 additions & 0 deletions benchmark/EFCore.Sqlite.Benchmarks/EFCore.Sqlite.Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@
<ProjectReference Include="..\..\src\EFCore.Sqlite.Core\EFCore.Sqlite.Core.csproj" />
</ItemGroup>

<ItemGroup>
<!--
Register the SQLitePCLRaw provider via the bundle's [ModuleInitializer].
Required since the SQLitePCLRaw 3.x bump (#36551): without this, every
benchmark throws "You need to call SQLitePCL.raw.SetProvider()" from
[GlobalSetup] and BenchmarkDotNet reports NA for every method.
-->
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" />
</ItemGroup>

<ItemGroup>
<None Update="AdventureWorks2014.db">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
Expand Down
Loading