-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix compiler vsix deployment #72321
Fix compiler vsix deployment #72321
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
<PackageReference Include="System.Collections.Immutable" IncludeInVsix="true" /> | ||
<PackageReference Include="System.Memory" IncludeInVsix="true" /> | ||
<PackageReference Include="System.Reflection.Metadata" IncludeInVsix="true" /> | ||
<PackageReference Include="System.Numerics.Vectors" IncludeInVsix="true" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just wondering whether BuildBoss shouldn't catch cases like this. cc @jaredpar There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's my concern as well. Generally BuildBoss should be used to catch inconsistencies like this. That is why I'm curious about what scenarios are not working today. |
||
<PackageReference Include="System.Text.Encoding.CodePages" IncludeInVsix="true" /> | ||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" IncludeInVsix="true" /> | ||
<PackageReference Include="System.Threading.Tasks.Extensions" IncludeInVsix="true" /> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this work in VS insertions? Won't it cause builds to fail for some reason? Should we do a validation run?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jjonescz this vsix isn't actually used for insertion - it uses one of Microsoft.CodeAnalysis.Compilers.x64/.arm64/.x64.vsix as the actual insertion VSIX
However weirder things have broken the VS build so I can run a val insertion to make sure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, thanks for explanation; I think it's fine then, we can always revert :)