When using test data source, where some data fails, following item
that is successful, overwrites "red" status to "green" again in the
Unit Tests window.
This is a workaround. Ideally SharpDevelop would have proper support
for test cases, such as showing them in the Unit Tests window and
being able to run individual test cases.
Fixes#726
Fixes the following issue with code completion.
class Foo
{
public void Bar() {}
}
var foo = new Foo();
foo.
^ Pressing Ctrl+Space here makes the code completion window show
itself. The completions list contains the type names from the 'global'
scope whereas it should contain only the list of Foo's members.
Cherry-picked from pull request #730
Do not register code actions and code issues that are disabled in
NRefactory.
Temporarily disable the CSharpFormattingTests.EnterInsideString test
which is broken due to a change in AvalonEdit.
If the Microsoft Visual C++ 2010 Redistributable Package (x86) was not
installed then a file not found exception was thrown by the TypeScript
addin. This exception is now handled and the parser adds an error to
the Errors list indicating that the C++ runtime should be installed
from the following link:
https://www.microsoft.com/en-us/download/details.aspx?id=5555
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