This repository was archived by the owner on Jun 21, 2023. It is now read-only.
Ensure x86|x64\e_sqlite3.dll are included in .vsix#2098
Merged
StanleyGoldman merged 5 commits intomasterfrom Dec 6, 2018
Merged
Ensure x86|x64\e_sqlite3.dll are included in .vsix#2098StanleyGoldman merged 5 commits intomasterfrom
StanleyGoldman merged 5 commits intomasterfrom
Conversation
Ensure e_sqlite.dll is included in .vsix when built using Visual Studio. This file was only being included in the .vsix when built using MSBuild from the command line.
Explicitly include x86\e_sqlite3.dll and x64\e_sqlite3.dll from content files in VSIX.
A direct reference to this package causes x86\e_sqlite3.dll and x64\e_sqlite3.dll be copied to the output directory so they can be picked by the VSIXSourceItem filter.
85e981a to
7868846
Compare
Collaborator
Author
|
@madskristensen i'm seeing a strange issue where artifacts are appearing in .vsix depending on whether is's build from the command line with MSBuild or from inside Visual Studio. When built using Visual Studio the |
Contributor
|
@dgriffen Do you know? |
StanleyGoldman
approved these changes
Dec 6, 2018
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ensure
e_sqlite.dllis included in .vsix when built using Visual Studio. This file was only being included in the .vsix when built using MSBuild from the command line.I don't like how brittle this is, but it was the only way I could find to ensure that
x86|x64\e_sqlite3.dllare included in .vsix when built using Visual Studio.What this PR does
<PackageReference Include="SQLitePCL.raw_basic">toGitHub.VisualStudio.csprojHow to test
GitHub.VisualStudio.vsixcontainsx86\e_sqlite3.dllandx64\e_sqlite3.dll(you can view contents using 7-zip)What was happening
Here is a comparison between a .vsix build using Visual Studio and one build using MSBuild from the command line.
It was causing the following when attempting to view a PR file diff.
Notes
I'm hoping it was also the reason some buttons weren't showing up. 🤞 We'll need to keep a look out for this one!