You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only offer PackageVersion element completion if the MSBuild project's ManagePackageVersionsCentrally property is set to true (or True).
Consider also hiding Version attribute completion on PackageReference elements if ManagePackageVersionsCentrally is set (might want to make this configurable though, if we choose to do it at all).
Rename HandlePackageReferenceElementCompletion and HandlePackageReferenceAttributeCompletion to HandleElementCompletion and HandleAttributeCompletion since the handler now deals with multiple item types.
The text was updated successfully, but these errors were encountered:
- Don't offer PackageVersion element as a completion unless the project's ManagePackageVersionsCentrally property is set to "true".
- Refactor PackageReferenceCompletionProvider to do a better job of documenting its semantics
- Move MSBuildHelper and related types and constants into their own namespace.
- Create constants for well-known item elements and attributes.
#93
Some enhancements to the work started in #84:
PackageVersion
element completion if the MSBuild project'sManagePackageVersionsCentrally
property is set totrue
(orTrue
).Version
attribute completion onPackageReference
elements ifManagePackageVersionsCentrally
is set (might want to make this configurable though, if we choose to do it at all).HandlePackageReferenceElementCompletion
andHandlePackageReferenceAttributeCompletion
toHandleElementCompletion
andHandleAttributeCompletion
since the handler now deals with multiple item types.The text was updated successfully, but these errors were encountered: