Prevent the CtrlShiftSpace support from breaking existing addins that
use ICodeCompletionBinding by adding another optional interface
IInsightCodeCompletionBinding that includes the new method.
GitHub will detect this document and show a "Please review the
guidelines for contributing to this repository." message with a link
to the contributing document when a pull request is being created.
With an OxyPlot.WindowsForms.PlotView on the form on re-opening the
form in the designer you would see the following error message and
the form would not be displayed:
Could not find type 'OxyPlot.WindowsForms.PlotView'
The PlotView type was being resolved correctly by the
TypeResolutionService to the OxyPlot.WindowsForms assembly but
getting the type required OxyPlot.dll to be resolved which was
not being done.
Fixes#713
Fixed null reference exception when package not found when
reinstalling a package for a single project.
Throw an exception when the package id cannot be found when
reinstalling a package for a single project or if the package id
cannot be found in any project when reinstalling for all projects.
A NuGet package can specify a dependency on another NuGet package when
a particular target framework is being installed:
<dependencies>
<group targetFramework="net40">
<dependency id="MyDependency" version="1.0"/>
</group>
</dependencies>
Installing this NuGet package into a project that targets net20 and
the MyDependency being unavailable on any NuGet feed should not fail.
Only installing the NuGet package into a project that targets net40
will this dependency be resolved.
NuGet.Core is updated to version 2.8.7 but NuGet.exe has only been
updated to version 2.8.6 since there has been no 2.8.7 version
released. The difference between 2.8.6 and 2.8.7 is one change to
how PowerShell is configured for Visual Studio which will have no
impact on NuGet.exe.