Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 7a68b08

Browse files
committed
Include (x86|x64)\e_sqlite3.dll in VSIX
Explicitly include x86\e_sqlite3.dll and x64\e_sqlite3.dll from content files in VSIX.
1 parent 91eebd0 commit 7a68b08

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/GitHub.VisualStudio/GitHub.VisualStudio.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -425,10 +425,6 @@
425425
<PackageReference Include="Microsoft.VSSDK.VsixSignTool">
426426
<Version>14.1.24720</Version>
427427
</PackageReference>
428-
<!-- Ensure e_sqlite.dll is included in .vsix when built using Visual Studio -->
429-
<PackageReference Include="SQLitePCL.raw_basic">
430-
<Version>0.7.3-vs2012</Version>
431-
</PackageReference>
432428
</ItemGroup>
433429
<PropertyGroup>
434430
<UseCodebase>true</UseCodebase>
@@ -438,6 +434,8 @@
438434
<ItemGroup>
439435
<VSIXSourceItem Include="@(ReferenceCopyLocalPaths)" Condition="'%(ReferenceCopyLocalPaths.NuGetPackageId)' == 'System.ValueTuple'" />
440436
<VSIXSourceItem Include="@(ReferenceCopyLocalPaths)" Condition="'%(ReferenceCopyLocalPaths.NuGetPackageId)' == 'Newtonsoft.Json'" />
437+
<VSIXSourceItem VSIXSubPath="x86" Include="@(Content)" Condition="'%(Content.Link)' == 'x86\e_sqlite3.dll'" />
438+
<VSIXSourceItem VSIXSubPath="x64" Include="@(Content)" Condition="'%(Content.Link)' == 'x64\e_sqlite3.dll'" />
441439
</ItemGroup>
442440
</Target>
443441
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

0 commit comments

Comments
 (0)