SQLite Forum

CopySQLiteInteropFiles not working with dotnet build?
Login
The project should be pretty vanilla (other dependencies trimmed):

```
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <ApplicationIcon>..\..\shared\AppIcon.ico</ApplicationIcon>

    <UseWPF>true</UseWPF>
    <ContentSQLiteInteropFiles>true</ContentSQLiteInteropFiles>
    <GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="System.Data.SQLite.Core" Version="1.0.114.2" />
  </ItemGroup>
</Project>
```

I saw there was a 1.0.114.3 version released a week or two ago, and I upgraded to that as a test but it didn't change anything.

I did notice that `dotnet build --version` reports `16.10.1.27001`. If the fix was only released in 16.10.2, that would explain why I don't see the fix. Maybe Microsoft forgot to include the updated version of `dotnet build` in the same update that had the fix in Visual Studio?

Does anyone have a 16.10.2 version of `dotnet build` on their machine, or can they confirm that the fix IS present in 16.0.1?