Skip to content

Commit

Permalink
move path0.dll to extensions folder
Browse files Browse the repository at this point in the history
  • Loading branch information
RupertAvery committed Jan 12, 2024
1 parent c06293c commit f8ed439
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Diffusion.Database/DataStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public async Task Create(Action notify, Action complete)
using var db = OpenConnection();

db.EnableLoadExtension(true);
db.LoadExtension("dlls\\path0.dll");
db.LoadExtension("extensions\\path0.dll");


var migrations = new Migrations(db);
Expand Down
6 changes: 4 additions & 2 deletions Diffusion.Database/Diffusion.Database.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand All @@ -15,7 +15,9 @@
</ItemGroup>

<ItemGroup>
<None Update="dlls\path0.dll">
<None Update="extensions\path0.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="e_sqlite3.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down
File renamed without changes.

0 comments on commit f8ed439

Please sign in to comment.