Siegfried Pammer
68ae72226d
Revert "trying to implement RenameContextAction for C#"
...
This reverts commit 9f5c8720a8
.
12 years ago
Daniel Grunwald
072b3e91b0
Don't show icon in scrollbar for redundancy issues.
12 years ago
Siegfried Pammer
4c5fb9d7dd
Merge branch 'reports' of github.com:icsharpcode/SharpDevelop into newNR
...
Conflicts:
SharpDevelop.Tests.sln
SharpDevelop.sln
12 years ago
Andreas Weizel
b27249761a
Readded CodeManipulation.
12 years ago
Andreas Weizel
738529e4aa
- OverrideToString completion now works.
...
- Added RefactoringContext.GetTypeResolveContext() method.
12 years ago
Andreas Weizel
fb7b720837
Fixed issues with code line swapping, when lines with multiple statements are involved.
12 years ago
Andreas Weizel
74bbb274c0
Fixed bug in moving code lines with appended comments: Code and comment were not kept together.
12 years ago
Andreas Weizel
95109a4af2
CodeManipulation (Alt+Arrow code moving, Ctrl+W selection extension) now works again.
12 years ago
Andreas Weizel
2c1c16e260
Reintroduced "insert constructor snippet" feature.
12 years ago
Siegfried Pammer
98c509f281
fix "surround with comment" for XAML; fix exception in XAML CC occurring when trying to type '<'
12 years ago
Daniel Grunwald
47df996540
Add TypeGraph
12 years ago
Daniel Grunwald
149dea7412
Add TypeGraphNode to NRefactory; and move AbiComparer from NR.CSharp.Analysis to NR.Analysis
12 years ago
Mike Krüger
ccc2fddc6c
Added obsolete EmptyExpression. (Removing was a breaking change)
12 years ago
Mike Krüger
742f67753d
ResultOfAsyncCallShouldNotBeIgnoredIssue no longer underlines a large
...
portion of the text.
12 years ago
Siegfried Pammer
01253ffb9c
reintroduce ResourceEditor
12 years ago
Mike Krüger
1e628e6b6a
Took out failing tests on mono.
12 years ago
Mike Krüger
76d9a6daa5
IKVM loader should now be a cecil loader replacement.
12 years ago
Siegfried Pammer
0a91f03a8c
convert VB binding to VB.NET
12 years ago
Siegfried Pammer
9f5c8720a8
trying to implement RenameContextAction for C#
12 years ago
Daniel Grunwald
b9eb45a9ae
Fix setup build.
12 years ago
Daniel Grunwald
a664a1773a
Fix build.
12 years ago
Daniel Grunwald
00e083ae5d
Adjust SharpDevelop to NRefactory changes.
12 years ago
Daniel Grunwald
bacdc7a200
Merge NRefactory '648eb6b0528d342a82f3cefee795ca1945f95b2f' into SharpDevelop 5.0
12 years ago
Daniel Grunwald
648eb6b052
Ignore failing test
12 years ago
Mike Krüger
c82d6011fc
Ikvm loader no longer resolves assemblies on its own.
12 years ago
Mike Krüger
f5d8ea6631
Removed empty expression / fixed potential bug where unary operator
...
expression may be null.
12 years ago
Daniel Grunwald
61e4e16ef5
Add back the old EntityType as obsolete enum to provide some limited backward compatibility.
12 years ago
Daniel Grunwald
7c388ba920
Rename EntityType -> SymbolKind
12 years ago
Daniel Grunwald
5e9edc0f63
Introduce ISymbol as a common super-interface of IEntity, INamespace, IVariable and ITypeParameter.
12 years ago
Daniel Grunwald
9ce893e90e
Fix title of EditAvailableConfigurationsDialog
12 years ago
Daniel Grunwald
11f74b1d1e
EnhancedScrollBar: put TrackAdorner into the track grid instead of using the adorner layer. This prevents the issue markers from getting lost when switching view contents.
12 years ago
Daniel Grunwald
feab288aca
Put the SortOrder in the AddIn-Tree; and remove the SortOrder.xml files.
12 years ago
Daniel Grunwald
2dd9e5bf17
Load categories for file/project templates from AddIn-Tree.
12 years ago
Daniel Grunwald
3256c448ee
Avoid keeping the whole AXmlDocument in memory for XamlUnresolvedFile.
12 years ago
Daniel Grunwald
560265cf61
Improve newline handling of XmlDocTooltipProvider.
12 years ago
Matt Ward
8794af0c6b
Fix duplicate assembly references when installing NuGet.
...
References to assemblies in a project that use the qualified assembly name, such as:
"NUnit.Framework, Version=2.6.2.0, Culture=neutral, PublicKeyToken=8cc8392e8503e009"
were not being removed and re-added when installing a NuGet package that included
that reference.
12 years ago
Mike Krüger
3ca994db9c
Merge pull request #191 from alanmcgovern/master
...
Remove $(Configuration) and $(Platform) from the OutputPath variable
12 years ago
Alan McGovern
b789f83243
[build] Fix the OutputPath properties
...
They should not contain $(Platform) or $(Configuration) in the actual
string as MonoDevelop is unable to cope with this.
12 years ago
Matt Ward
6dddd4eeef
Add credential provider for NuGet feeds.
...
Only supports credentials stored in NuGet.config under
the user's profile:
nuget sources update -name MyFeed -username user -password pass
12 years ago
Matt Ward
cacfb33313
Support installation of Microsoft.Bcl.Build NuGet package.
...
Add projects to MSBuild's global project collection if
the NuGet package has PowerShell scripts.
Add/Remove MSBuild project imports added to a project
held in MSBuild's global project collection after
the NuGet package has been installed.
12 years ago
Matt Ward
c67ee6ba61
Add gap between Update All button and scrollbar.
12 years ago
Matt Ward
64385d17b5
Fix scrollbar not displaying in Manage Packages dialog.
12 years ago
Peter Forstmeier
6a08d8f096
DataPageBuilder.cs
12 years ago
Mike Krüger
18e17deda6
Added index getter to type parameter reference.
12 years ago
Mike Krüger
f7e1c35fdf
Fixed bug in IdStringProvider.ParseTypeName.
12 years ago
Mike Krüger
929dc52f3f
Disabled VariableDeclaredInWideScopeIssue.
...
This may destroy code - see
"DoesNotSuggestMovingIntoBodyAfterMethodCall". This issue requires
some extra logic. I doubt that the issue is useful any longer when
that logic is implemented. Safely moved can only be constant
expressions (which should be handled by the compiler anyway). It needs
to check that it doesn't move non constant code beyond any
method/property usage or field assignments - there are no much use
cases left for that action.
12 years ago
Mike Krüger
06ad4c8218
Added unit test for CS0029InvalidConversionIssue.
12 years ago
Mike Krüger
0974a50e89
Cleaned up some code.
12 years ago
Andreas Weizel
d471550e27
Merge pull request #38 from Rpinski/GotoDialog
...
GotoDialog: Restored search in type members with dot "." in SD 5 + input completion by TAB
12 years ago
Matt Ward
1f1620234d
Support pre-release NuGet packages in dialog.
12 years ago