Mike Krüger
9243fad286
[CodeAction] Fixed bug in create overload without parameter action.
13 years ago
Matt Ward
e810ff78d5
Implement EnvDTE.ProjectItem.FileCount
13 years ago
Matt Ward
2681f78212
Provide a way for the DTE to provide the IVsSolution interface.
...
Workaround is to have the DTE class implement the System.IServiceProvider interface which is not
actually implemented by Visual Studio's EnvDTE.DTE class.
13 years ago
Mike Krüger
5188f6968f
Added test for enumeration type hinting in completion.
13 years ago
Mike Krüger
2bd3e6d904
[CodeCompletion] Fixed type hints for enumerations.
13 years ago
Mike Krüger
08ee807d18
[CodeAction] Fixed bug in create field/property action.
13 years ago
Mike Krüger
e1760a55d0
[CodeAction] Fixed bug in create property code action.
13 years ago
Mike Krüger
b1a5ccffb1
[CodeAction] Fixed bug in create field/property action.
13 years ago
Matt Ward
ea9b39b01f
Implement Get-VSComponentModel cmdlet and IVsPackageInstallerServices.
...
Allows EntityFramework Enable-Migrations command to get the installed NuGet packages.
13 years ago
Matt Ward
9eceb221b7
Fix methods on wrong class in code coverage results window.
...
Matching methods to a class was allowing partial matches by only comparing the start of the class name.
13 years ago
erikkallen
c615c9f730
Make 'await' resolve as in the C# 5.0 language specification.
...
This means that the awaiter type must implement INotifyCompletion and can optionally implement ICriticalNotifyCompletion.
13 years ago
Matt Ward
9facfbe8bf
Display code coverage results when solution opened.
...
On opening a solution previous code coverage results files are located and displayed in the code coverage pad.
13 years ago
Matt Ward
28d9289116
Fix unhandled exception if code coverage results file does not exist.
...
Show error message in code coverage pad's text editor if the code coverage file does not exist.
13 years ago
Matt Ward
fe5802bc61
Fix compilation warnings in code coverage addin.
13 years ago
Matt Ward
04c483a83a
Fix Get-Package NuGet cmdlet not finding projects.
...
The ProjectName parameter now supports finding projects by filename.
13 years ago
Matt Ward
71f8ccce41
Support finding a project by unique name in EnvDTE.Solution.Projects.
13 years ago
Matt Ward
07fe2e57fc
Implement EnvDTE.SolutionBuild.ActiveConfiguration
13 years ago
Matt Ward
e428c65ef7
Implement EnvDTE.Solution.Properties.
13 years ago
Matt Ward
899e4a6964
Implement EnvDTE.SolutionBuild.StartupProjects
...
Used by Entity Framework when enabling migrations.
13 years ago
Matt Ward
3859303d20
Fix EF NuGet package adding web.config files to non-web projects.
...
NuGet's IProjectSystem.IsSupportedFile now returns false for web.config files when the project is not a web project.
It returns false for app.config files when the project is a web project.
13 years ago
Matt Ward
7dd2cc0296
Fix T4MVC T4 template failing to run.
...
Extend the text templating addin to allow addins to define their own service providers.
Package management addin defines a service provider that can be used in a T4 template to create EnvDTE types such as DTE.
13 years ago
Siegfried Pammer
22dedf2601
implemented SetCompositionFont: now the IME font size should be the same as in the editor
13 years ago
Daniel Grunwald
ff4e91c204
Only update the IME composition window when the VisualLine for the caret position is available.
...
This fixes a performance issue while scrolling (without this change, UpdateCompositionWindow() would cause the line containing the caret to be re-generated whenever the user scrolls).
13 years ago
Daniel Grunwald
28453802ea
AvalonEdit IME support: use the default input context, and fix issues with IME not activating in some cases using ITfThreadMgr.SetFocus(null).
13 years ago
Daniel Grunwald
2aa2ddb456
Create a new IME context instead of using the default one.
13 years ago
Daniel Grunwald
827dbee0d4
Simplify IME integration a bit
13 years ago
Daniel Grunwald
3e3e7d0fce
AvalonEdit IME support: Fix NullReferenceException when HwndSource.RootVisual == null.
...
Can happen during AvalonDock layout switches (http://community.sharpdevelop.net/forums/t/16326.aspx )
13 years ago
Daniel Grunwald
f83af4d8af
AvalonEdit IME Support: clear old context when IME support is disabled
13 years ago
PeterForstmeier
41b86e4369
ProjectInformation userControl in ApplicationOptions (CppBinding) asn ApplicationSettings.xaml(C#)
13 years ago
Mike Krüger
ae20e4929a
[Resolver] Fixed unexpected resolver crash.
...
Test Case:
Action foo = f => { f.FirstOrDefault(l=>); };
13 years ago
Mike Krüger
e7ae3abb0f
Merge pull request #127 from fightangel/assignment-fix
...
[CodeIssues]RedundantAssignmentIssue: ignore assignments in try blocks
13 years ago
Mike Krüger
7d702dc862
Added work-around for unexpected parser behaviour.
13 years ago
Mansheng Yang
9622218439
[CodeIssues]RedundantAssignmentIssue: ignore assignments in try blocks
13 years ago
Mike Krüger
7478e22d60
Updated mcs.
13 years ago
PeterForstmeier
44850ceb88
Remove unused Files from VBNetBinding
13 years ago
PeterForstmeier
42c8840e7d
Cleanup
13 years ago
Mike Krüger
17b0fe0e64
[Ast] 'where' keyword was missing in parsed query where clause.
13 years ago
Mike Krüger
f24ac256e1
Merge pull request #125 from erik-kallen/bug-comment-before-try-catch-finally
...
Bug with comment just before try/catch/finally statement.
13 years ago
Erik Källén
1b45b0eeaa
Bug with comment just before try/catch/finally statement.
13 years ago
PeterForstmeier
3223b5fb5a
Adjust VBNetBinding.addin, cleanup
13 years ago
PeterForstmeier
960381dea6
BuildOptions for VBNetBinding
13 years ago
Mike Krüger
c48fe90874
[Completion] Fixed bug.
13 years ago
Mike Krüger
e6051dec4c
Merge pull request #124 from riviti/master
...
Fixes for a couple of issues
13 years ago
Mike Krüger
ef23a05edf
Fixed unit tests.
13 years ago
Mike Krüger
29a2f5728a
Fixed parser bug.
13 years ago
Mike Krüger
e77fadd5bd
Fixed parser error.
13 years ago
Mike Krüger
6820c5d253
Updated mcs.
13 years ago
Mike Krüger
f44398f038
Fixed potential code completion problem where completion could show up
...
on invalid keys.
13 years ago
Mike Krüger
c0972c8c95
[Completion] Filter out namespaces that only contain inaccessible
...
types.
13 years ago
PeterForstmeier
42bbe19852
Cleanup BuildOutput
13 years ago