Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
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
8 changes: 8 additions & 0 deletions src/GitHub.VisualStudio/GitHub.VisualStudio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -428,11 +428,19 @@
<PropertyGroup>
<UseCodebase>true</UseCodebase>
</PropertyGroup>
<ItemGroup>
<!-- Include a reference to this package so that x86|x64\e_sqlite3.dll are copied to the output directory -->
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3">
<Version>1.1.11</Version>
</PackageReference>
</ItemGroup>
<!-- Include required NuGet dependencies-->
<Target Name="IncludeNuGetPackageReferences" AfterTargets="GetVsixSourceItems">
<ItemGroup>
<VSIXSourceItem Include="@(ReferenceCopyLocalPaths)" Condition="'%(ReferenceCopyLocalPaths.NuGetPackageId)' == 'System.ValueTuple'" />
<VSIXSourceItem Include="@(ReferenceCopyLocalPaths)" Condition="'%(ReferenceCopyLocalPaths.NuGetPackageId)' == 'Newtonsoft.Json'" />
<VSIXSourceItem VSIXSubPath="x86" Include="@(Content)" Condition="'%(Content.Link)' == 'x86\e_sqlite3.dll'" />
<VSIXSourceItem VSIXSubPath="x64" Include="@(Content)" Condition="'%(Content.Link)' == 'x64\e_sqlite3.dll'" />
</ItemGroup>
</Target>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Expand Down