Daniel Grunwald
2b41cda674
Simplify Demo app.
14 years ago
Daniel Grunwald
0c1ab952ce
Add preload thread.
14 years ago
Mansheng Yang
4ff155eac0
Merge remote-tracking branch 'upstream/master' into mansheng
14 years ago
Daniel Grunwald
0788d1bbff
[WIP] Started porting forms designer to NR5
14 years ago
Daniel Grunwald
5d2fee1b90
Add CompilerSettings class instead of using the one from Mono.CSharp.
...
Added ResolveResult-treeview to NR.Demo.
14 years ago
Siegfried Pammer
af52fa8ca5
fix http://community.sharpdevelop.net/forums/t/15920.aspx - VB Parse - Unhandled Exception with embedded XML
14 years ago
Mansheng Yang
e7a902baca
Merge remote-tracking branch 'upstream/master' into mansheng
14 years ago
Mansheng Yang
b37dedfa87
[CodeIssue] Added LocalVariableOnlyAssignedIssue and ParameterOnlyAssignedIssue
14 years ago
Mike Krüger
6ba62c6740
[Formatting] Fixed override.
14 years ago
Mike Krüger
3e2fe59188
[CodeActions] Added Task async excecution for insertion & link modes.
14 years ago
Mansheng Yang
8e02a17f9d
Merge remote-tracking branch 'upstream/master' into mansheng
14 years ago
PeterForstmeier
04f57dd5fd
StringListEditorDialog in AnalysisProjectOptionsPanelXaml
14 years ago
PeterForstmeier
5bdef05fdd
Move StringListEditorDialog.xaml to src\Main\Base\Project\Src\Gui\Components\
14 years ago
PeterForstmeier
84e21490a0
Read-Write settings from AnalysisProjectOptionsPanelXaml
14 years ago
Daniel Grunwald
585ae50c2f
CSharpAstResolver: don't return the same ResolveResult for two different nodes.
...
(make clones when using caches)
Closes icsharpcode/NRefactory#46 .
14 years ago
Mike Krüger
08636dbabc
[Completion] Fixed named argument completion bug.
14 years ago
Mike Krüger
fbc1cfd0c9
Fixed some failing unit tests.
14 years ago
Mike Krüger
6e5b973924
[ContextAction] Added null check to create method.
14 years ago
Mansheng Yang
1c0a7305f5
[CodeIssue] TypeParameterNotUsedIssue: removed the fix because it may introduce errors.
14 years ago
Mansheng Yang
454bfe5e39
[CodeIssue] LocalVariableNotUsedIssue: Find unused foreach variable
14 years ago
Mansheng Yang
e2221f23e0
Merge remote-tracking branch 'upstream/master' into mansheng
14 years ago
Mansheng Yang
ca048e63e8
[CodeIssue] Added VariableNotUsedIssue, ParameterNotUsedIssue and TypeParameterNotUsedIssue
14 years ago
Mike Krüger
fadffd3939
[Completion] Improved the closing tag insertion (xml documentation).
14 years ago
Mike Krüger
3dc44639dd
[Resolver] Array initalizers no longer show up in ResolveAtLocation.
14 years ago
Siegfried Pammer
491f0cc7f3
fix Evaluator Unit Test
14 years ago
Daniel Grunwald
84c092c1eb
Merge pull request #67 from erik-kallen/UserDefinedExplicitConversionBetweenReferenceTypes
...
User defined explicit conversion between reference types
14 years ago
Daniel Grunwald
25cf612417
Merge pull request #66 from erik-kallen/ParameterIdentity
...
Parameter identity
14 years ago
Erik Källén
951d9a6bb0
Fix for the issue that user-defined explicit conversions don't work.
14 years ago
Erik Källén
0fec8d3474
Failing test that demonstrates that explicit user-defined conversions don't work.
14 years ago
Mike Krüger
e058d6103b
[Completion] Improved xml document completion.
14 years ago
Mike Krüger
95bc695e51
[Completion] Be more general when providing type level keywords in
...
members.
14 years ago
Matt Ward
a749d0372d
Implement Reference.Path property.
14 years ago
Matt Ward
4bff959fbd
Implement Reference3.AutoReferenced property.
14 years ago
Mike Krüger
839b19e814
[TyeSystem] Fixed bug in nested type property.
14 years ago
Mansheng Yang
d8aac6d657
Merge remote-tracking branch 'upstream/master' into mansheng
14 years ago
Simon Lindgren
4ac7fecf0a
[Refactoring] Don't suggest names that are used in a parent scope when falling back to numbered names.
14 years ago
Mike Krüger
3ded985188
[Formatting] Fixed overlapping changes issue.
14 years ago
Mike Krüger
d355b0f84b
[CodeIssues] Added indexer case.
14 years ago
Mike Krüger
da2eea8353
[CodeIssues] Improved naming check (skipp overriden members).
14 years ago
Mike Krüger
4c875208f4
[CodeAction] Create field now works on member reference expressions
...
with 'this.' target.
14 years ago
Erik Källén
9476183889
Fix for the parameter identity in accessors issue.
14 years ago
Erik Källén
1363faf788
Tests demonstrating issues with parameter identity in accessors.
14 years ago
Daniel Grunwald
9099e376d8
BuildWorker: swap communication and build threads.
...
This is an attempt to fix http://community.sharpdevelop.net/forums/t/15654.aspx - BuildWorker40 hangs on windows 7 x64bit when invoking the markup compiler.
According the the report in the forums, the problem disappears when MSBuild is invoked on the main thread, and communication is suspended while the build is in progress (breaking cancellation).
This patch also moves the communication onto a background thread, fixing build cancellation. This might solve the problem if the hang was somehow related to the thread MSBuild was running on. However, if the AppDomain unload fails due to the thread stuck reading from the named pipe, the build worker might continue hanging with this patch.
14 years ago
Matt Ward
c5d56286b4
Install NuGet.Console.Types.dll with package management addin.
14 years ago
Matt Ward
e33c7f4edd
Allow MvcScaffolding to set the default PowerShell runspace through the IConsoleInitializer.
14 years ago
Andreas Weizel
cec924fd86
Changed sort order of matching items in GotoDialog: Full matches are followed by items of currently open code file, shown in bold font. Then all other matches (from other files) are shown as usual.
14 years ago
PeterForstmeier
0ed2a4815b
Set Icons in AnalysisProjectOptionsPanelXaml.xaml
14 years ago
Siegfried Pammer
c9bea6a597
reimplement tooltips for simple expressions
14 years ago
Daniel Grunwald
806869e563
Add IType.GetAccessors().
...
Accessors now use EntityType.Accessor instead of EntityType.Method.
Added accessors support to DefaultMemberReference and ExplicitInterfaceImplementationMemberReference.
Removed hacky code from CecilLoader - we now allow IsExplicitInterfaceImplementation=true on accessors.
14 years ago
Simon Lindgren
13ca3511df
[CodeActions] Make IterateViaForeachAction use names based on their type and add handling of using and for statements.
14 years ago