MonoDevelop.MSBuildEditor
MonoDevelop.MSBuildEditor copied to clipboard
Show package version on `PackageReference` when it's set centrally
If I use a Directory.Packages.props with content like:
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="CefSharp.Wpf" Version="127.3.50" />
</ItemGroup>
</Project>
And then reference that package in my csproj (notice that leaving out the version is mandatory in this case):
<PackageReference Include="CefSharp.Wpf" />
, it would be neat to see, in the package tooltip, which version it has inferred from the PackageVersion element. That way, I'd have to jump between files a little less.
Would also be nice to show available package versions when editing the PackageVersion Version in Directory.Packages.props.