161
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
Aug 22, 2025 — Aug 22, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Deleted some of the unused translation strings. More... almost 21 years ago
Fixed SD2-458: Tab is always replaced with 4 spaces More... almost 21 years ago
Added support for commenting/uncommenting a selection of xml. More... almost 21 years ago
Fixed SD2-474: Allow targeting other .NET Framework versions. More... almost 21 years ago
Fixed SD2-476. Goto definition now works for unit tests in a test fixture containing a SetUp method. More... almost 21 years ago
GotoDefinition executed when double clicking an MbUnitPad test tree node. More... almost 21 years ago
Fixed SD2-472 (Cursor disappears off screen whilst pressing right arrow key) and a newly introduce performance problems with large files (>5000 lines). Added constructor insight support to BooBinding. More... almost 21 years ago
Added support for local variables and simple type inference to BooBinding. More... almost 21 years ago
Fixed assertion when typing a "RaiseEvent" statement (http://community.sharpdevelop.net/forums/1156/ShowPost.aspx) More... almost 21 years ago
Boo implicitly references System.dll and Boo.Lang.dll. More... almost 21 years ago
Fixed paths in BooBinding project files. More... almost 21 years ago
Add BooBinding. More... almost 21 years ago
Fixed SD2-473. A KeyNotFound exception is no longer thrown if the highlighting strategy does not contain a LineComment property. More... almost 21 years ago
Improved handling of proportional fonts. More... almost 21 years ago
Run MsBuild in a separate thread => you can continue coding while your code is compiling. More... almost 21 years ago
Caret is now displayed at the correct position when using non-monospaced fonts. (but selecting with the mouse still doesn't work) More... almost 21 years ago
Use use static readonly collection instance for empty attribute, type parameter and parameter collections. More... almost 21 years ago
Fixed SD2-470: When there is a using statement for the current namespace, classes are shown twice in Ctrl+Space More... almost 21 years ago
Help 2.0: fixed a bug when selecting the previous or next topic button (browser) with a hidden TOC control; there was an exception because, of course, there was no selection in the TOC control. Now I use the Get*FromUrl method with the current browser URL. btw: some other things changed More... almost 21 years ago
Fixed SD2-420: Non-generic classes and generic classes with the same name collide in the DOM. More... almost 21 years ago
Fixed SD2-460: Parse error (inner classes in generic types) More... almost 21 years ago
Fixed code completion bug regarding events. Fixed "run unit test in debugger". More... almost 21 years ago
Pad layout: included some references for the dynamic help pad to solve issue #2 (http://community.sharpdevelop.net/forums/820/ShowPost.aspx) More... almost 21 years ago
Allow references to unbound types in typeof/GetType expressions. More... almost 21 years ago
Improved performance of "Replace all". More... almost 21 years ago
Fixed NRefactory bugs: VB partial class declarations and attributes with "Global." or "global::" caused parser errors. More... almost 21 years ago
Fixed loading of project files created by Visual Studio 2005. More... almost 21 years ago
Fixed SD2-440: Icon for local variables and parameters More... almost 21 years ago
Introduced DomCache (a kind of code completion database that is generated on-the-fly for each assembly). Advantages: - faster than reflection - referenced libraries do not need to be looked up during code completion (only when generating the cache) -> fixes SD2-444 ReflectionOnlyAssemblyResolve is not used when an assembly is only needed inside inner classes --> Code completion for VB's My-namespace works again - Assemblies do not need to be hold in RAM (they are now loaded in a separate AppDomain) -> no more locking problems -> less memory consumption Disadvantages: - higher memory-consumption because currently the file is loaded at once (previously the data was lazy-loaded using Reflection) -> but there are some optimizations possible (reusing string and DefaultParameter instances) and lazy-loading could be reimplemented similar to what Fidalgo does with its CCDB. More... almost 21 years ago
dynamic help: needed to fix the Win32 resource... Hm... More... almost 21 years ago