Siegfried Pammer
4c6bbb31be
small improvements on ILSpy integration:
...
- jump to entity after decompilation has finished
- add Ctrl+F search
14 years ago
Daniel Grunwald
68f75c067b
Fix SD-1872 - Forms Designer is unbearably slow in 4.2
14 years ago
Siegfried Pammer
71fbb38182
fix SD-1875 - "Copy" command in context menu on values in debugger tooltips does not work correctly
14 years ago
Siegfried Pammer
1a5cd796f4
fix setting sync bug in output window
14 years ago
Daniel Grunwald
67554f993c
Fixed code completion for C# 3.0 projects - reference to mscorlib was missing.
14 years ago
Daniel Grunwald
1aa10e5bbf
Ignore OutOfMemoryException when trying to paste large amounts of text.
14 years ago
Daniel Grunwald
821bb6e6e7
Don't expose LinkElementGenerator.GetMatch().
14 years ago
Daniel Grunwald
0bdc13eed2
Fix NullReferenceException when mscorlib reference is missing.
14 years ago
Matt Ward
256b569d03
Fix SD-1841 - SolutionDir MSBuild property not defined when running project.
14 years ago
PeterForstmeier
b2223bea74
TreeMapViewModel.cs, create Linq Queries for Namespace and Method
14 years ago
PeterForstmeier
64ea71d751
Add Query Classes for Assembly and Type, queries are still missing
14 years ago
PeterForstmeier
f745ec42dd
Eliminating zero values from Queries reduce render time for test assembly from 6 to 1 secounds
14 years ago
Matt Ward
082f532a69
Fix assemblies not being resolved when a MSBuild project defines a reference search path via a PropertyGroup/ReferencePath which defines the path using $(SolutionDir).
14 years ago
Daniel Grunwald
8b0de6243f
Fix the width of tabs with IndentationSize=1.
...
See http://community.sharpdevelop.net/forums/t/14176.aspx
Tab markers now report a size one pixel smaller than the tab glyph.
The problem was that if the tab glyph already advanced to (or over) the next multiple of the indentation size, the normal tab character advanced the rendering position a second time. This always happened if the IndentationSize was 1, but it could also happen in some other cases, for example when IndentationSize=4 and Text="aaa\t".
The issue is complicated by proportional fonts: there, a tab can be very small (maybe only a single pixel) if there is text in front of the tab that almost reaches the next tab position. In this case, we have only two choices: make the tab larger than it would be without the tab glyph, or have the tab glyph overlap with the next character after the tab. (a third choice would be not to draw or clip the tab glyph if there's not enough room, but that's difficult to do with the WPF text layout engine)
This fix makes the TabGlyphRun report a size one pixel smaller than the actual width of the glyph. This way the invisible tab character can fit in that one-pixel gap, which fixes the issue for monospaced fonts. But if there isn't enough room for the tab glyph (as can happen with proportional fonts), the tab will still be larger than it should be.
14 years ago
Daniel Grunwald
b3ed4c86a8
Fixed potential NullReferenceException in HeightTree.GetNodeByVisualPosition
14 years ago
Siegfried Pammer
90dc21d60a
added SD-790 - Output window text search
14 years ago
Siegfried Pammer
8c64954a06
move OutputPad to WPF based on AvalonEdit
14 years ago
Siegfried Pammer
885a8fe13c
add scrollbar to external tools options dialog
14 years ago
Siegfried Pammer
cf9a06642b
fixed small, but annoying bugs in VB Lexer and profiler
14 years ago
Matt Ward
e3d160c6da
Fix ${TargetPath} evaluating to wrong file extension for WiX projects.
14 years ago
Daniel Grunwald
a15202b44a
Fix AvalonEdit .NET 3.5 build.
14 years ago
PeterForstmeier
aa7e1bba54
eliminate '0' values in 'Nodes'
14 years ago
PeterForstmeier
8fd6c23877
Change itemWithCommand to ItemWithAction
14 years ago
PeterForstmeier
1f4ac5dc79
Merge branch 'master' of github.com:icsharpcode/SharpDevelop
14 years ago
PeterForstmeier
b964a68112
try List<ItemWithCommand> for filtering nodes
14 years ago
Matt Ward
745640729a
Ignore case when comparing project type guids to check if a project is a web or Silverlight project.
14 years ago
Matt Ward
69c7dde1e3
Fix SD-1874 - Attribute code completion not working for assemblies that reference assemblies using a different .NET framework version to those referenced by the project.
14 years ago
Matt Ward
f9c3d8002a
Fix xml form resources not being found in assembly.
14 years ago
Matt Ward
b26a6fb635
Move Manage Packages menu item after Add Service Reference menu item when right clicking on a project.
14 years ago
Matt Ward
53d7b69a09
Fix service reference node appearing in wrong place in Visual Studio's Solution Explorer.
14 years ago
Matt Ward
00adbade6b
Generate service reference map file (Reference.svcmap) when adding service references.
14 years ago
Matt Ward
8a968a390e
Move code to determine service reference folder into separate ServiceReferenceFileName class.
14 years ago
Matt Ward
a0801f53f9
Add WCFMetadataStorage item to project when a WCF service reference is added.
14 years ago
Matt Ward
c44ab66b1c
Make Add Service Reference menu item available when References and Service References selected in Projects browser.
14 years ago
Matt Ward
6a2c375c8e
Reformat code and fix typos.
14 years ago
Matt Ward
f06449a0fd
Generate WCF proxy file from Add Service Reference dialog.
14 years ago
PeterForstmeier
dd45b722cb
ChangeTabItem = Reset TreeMap,Small changes from FxCop
14 years ago
PeterForstmeier
4591d52baa
Reset databinding for TreeMaps
14 years ago
Matt Ward
e64557d10a
Move navigation service tests to ICSharpCode.SharpDevelop.Tests namespace.
14 years ago
Matt Ward
c45c27e6bd
Fix C++ project failing to run when solution and project exist in the same folder.
14 years ago
Matt Ward
12f11b356b
Move Rhino.Mocks to common libraries folder.
14 years ago
Matt Ward
adb253e5cc
Move check for web reference folder out of DirectoryNode.
14 years ago
Matt Ward
fc35f75a90
Add context menu items for WCF service references.
14 years ago
Matt Ward
ce4caf8a33
Show WCF service references in Projects window with different icons.
14 years ago
PeterForstmeier
8497323e67
CodeQualityAnalysis - Rework StatusBar to show actual values of selected Item
14 years ago
PeterForstmeier
554f23a2ae
CodeQualityAnalyis Sort members in TreeViews
14 years ago
Siegfried Pammer
95c3cd9c63
added "Launch HLM" to Help menu
14 years ago
PeterForstmeier
fc7b29f5ef
Activation of MetricCombo, re factor creation of Nodes(INodes)List
14 years ago
Daniel Grunwald
737fba5dc7
Update ICSharpCode.Decompiler to ILSpy 09c2b45f.
14 years ago
Daniel Grunwald
2049beb82f
Update to SharpSVN 1.7.2
14 years ago