SQLite Forum

The CopySQLiteInteropFiles target in the NuGet package no longer works in Visual Studio 16.10
Login
Hi, We found a workaround, there is a trailing slash missing, and because of that a condition is not met, that would copy the files.

you need to adapt the target file under:
C:\Users\*yourUser*\.nuget\packages\stub.system.data.sqlite.core.netframework\1.0.113.3\buildTransitive\net46\Stub.System.Data.SQLite.Core.NetFramework.targets

We added a trailing slash to the end of this line: 
<SQLiteTargetFramework>$([MSBuild]::MakeRelative('$(MSBuildThisFileDirectory)..', '$(MSBuildThisFileDirectory)'))\\</SQLiteTargetFramework>
 
Then it should work at least for the moment