2088 Commits (25fa355be32762aaddcfdd6a3618d568aad392ac)

Author SHA1 Message Date
Christian Hornung 5352e87454 Updated language resources to fix missing strings. 17 years ago
Matt Ward 722e10b754 Added IronPython console pad. 17 years ago
Matt Ward fa0d9b4571 Update to WiX 3.0.4415 17 years ago
Matt Ward 035e66dcba Update to IronPython 2.0 beta 4 17 years ago
Daniel Grunwald 8ac9a36f86 Fixed build. 17 years ago
Daniel Grunwald bc4d77b564 r7442@daniel-notebook (orig r3404): daniel | 2008-08-17 17:23:23 +0200 17 years ago
Christian Hornung 70c3b777cd Windows.Forms designer now uses OpenedFile for all files it modifies. 17 years ago
Daniel Grunwald cd5d5eebb5 r7308@daniel-notebook (orig r3339): daniel | 2008-08-14 09:31:18 +0200 17 years ago
Daniel Grunwald 331c98e525 r7307@daniel-notebook (orig r3338): daniel | 2008-08-14 07:56:11 +0200 17 years ago
Daniel Grunwald 606cb75ed5 Implemented Active*ContentChanged events. 17 years ago
Daniel Grunwald ca962af8e9 Move ParameterCheckRefactoringMenuBuilder to SharpRefactoring. 17 years ago
Daniel Grunwald 216cc81acd Add AvalonDock. 17 years ago
Daniel Grunwald 69598c8466 Make workbench a WPF window. 17 years ago
Matt Ward 87696d60c2 Fixed unit tests. 17 years ago
Justin Dearing ccc0e49a90 Got the tests to compile. They all don't run on my machine. 17 years ago
Daniel Grunwald 3bd1ab5517 SD2-1342: Remove Windows.Forms dependency from ICSharpCode.Core 17 years ago
Matt Ward 3cb8ad9b26 Added Style Cop addin by Matt Everson. 17 years ago
Daniel Grunwald f18f9a6817 Add "Add check for null" and "Add range check" commands to C# refactoring menu. 17 years ago
Christian Hornung 3d58ec399d Fixed the Python designer unit tests. 17 years ago
Christian Hornung 61268e9dc4 Windows.Forms designer: Implemented support for PropertyReflection localization model, and set this as default. Localization model can be changed on new options panel, with the option to keep the localization model of existing forms unchanged. 17 years ago
Daniel Grunwald 2f65a05f2b Fixed forum-7979 (breakpoint disappears when the line above is deleted). 17 years ago
Justin Dearing bc1f3d9112 You can now insert custom formatted dates with StringParser.Parse() via ${DATE:formatstring}. This string gets passed to DateTime.Now.ToString() and the results returned. All project templates that have an AssemblyInfo.cs now set the AssemblyCopuRight to this year. 17 years ago
Matt Ward ee432c5ff0 Remove dot characters from generated WiX component ids. 17 years ago
Matt Ward 3dfb4d627d Set the KeyPath to true when adding a file with its own parent component in the WiX setup files editor. 17 years ago
Matt Ward fc1a8bb8ec Diff menu item in WiX setup files editor now shows new directories that are missing from setup. 17 years ago
Matt Ward 46e71bc93d Added an Add Files menu item to the selected directory node in the WiX files editor. This menu item will add multiple files, each with its own parent component, to an existing directory tree node in one step. 17 years ago
Daniel Grunwald 2af778abe8 SD2-1366: Add Boo Interpreter back to SharpDevelop 17 years ago
Daniel Grunwald c2c5e8b021 Add log4net, NUnit, PartCover source code to Vendor. 17 years ago
Matt Ward 954948bcbb DefaultWorkbench can now be replaced with a custom class implementing the IWorkbench interface. Added a snippet compiler sample that demonstrates how the DefaultWorkbench can be replaced. 17 years ago
Matt Ward 679734ea11 Fix failing WiX tests due to changes in wix.targets schema. 17 years ago
Daniel Grunwald 3b28446cec Add class for each code snippet conversion. 17 years ago
Siegfried Pammer ba1da5b671 Implementation of the bracket highlighting for Boo 17 years ago
Daniel Grunwald 87b988cc79 Fixed NullReferenceException when hovering over Name property in loose XAML files. 17 years ago
Daniel Grunwald 5ed0197a38 Fixed forum-7772: Autocomplete does not recognize variables that start with underscore (_) 17 years ago
Daniel Grunwald 779bded4ad Remove boolean properties "Standalone" and "NoMLLib" from CoreCompile target inputs, only files/directories should be listed there. This fixes the issue that some F# projects (projects with those properties set) would always recompile even when unchanged. 17 years ago
Daniel Grunwald e3927b4b2c Fixed build error when compiling F# binding with new F# version. 17 years ago
Daniel Grunwald 38cef94960 Fixed SD2-1414: Mouse wheel scrolling does not work for high-resolution mice 17 years ago
Daniel Grunwald 376daec8a3 Fixed syntax error in C# code used in C#->python converter unit test. The test was broken because I changed the parser's error recovery strategy in revision 3059. 18 years ago
Daniel Grunwald 7efa54a6fb Fixed casing of Microsoft.CSharp.targets and System.Xml in .csproj files, fix FileUtility.Minimal.cs when running on Mono. 18 years ago
Matt Ward 4d5873eec9 Python parser now gives classes the namespace of the file. Added code completion support for local variables. 18 years ago
Matt Ward 7db58ef39d Code completion in the Python binding was not working due to a change in the AbstractCompletionDataProvider's GetExpression method where the expression offset is now after the end of the text. 18 years ago
Matt Ward de2d66bc22 Added System reference to Python console project template. 18 years ago
Daniel Grunwald 46ff714cc1 Fixed SD2-511: Code completion in inserted line 18 years ago
Daniel Grunwald f5913a8d1d Worked on lambda expression support. 18 years ago
Daniel Grunwald 420b068acd Rewrote type inference and overload resolution. The new version has support for implicitly typed lambda expressions. 18 years ago
Daniel Grunwald 48694b5ee1 Fixed list of Boo primitives. 18 years ago
Matt Ward 6722800a0e Fixed null reference exception that occurs when a Python method is missing its last parameter. 18 years ago
Matt Ward 66139d6231 SD2-1364 - End operator statement not added after user presses enter key. Patch by Siegfried Pammer. 18 years ago
Daniel Grunwald 98b7690971 Fixed usage of AmbienceService.CurrentAmbience: sometimes the ConversionFlags were not used because the ambience object was recreated. 18 years ago
Matt Ward 0fbdacdd23 Added a CheckIfFscNotInstalled target to the F# build tasks so that it is possible to build SharpDevelop's main solution without the F# compiler being installed. If the CheckIfFscNotInstalled property is set to True in the F# project and the F# compiler cannot be found a warning is displayed and the F# addin is not built. If the CheckIfFscNotInstalled property is not set or set to False the F# build tasks will not check for the presence of the F# compiler and will try to compile the project. This will be the case for any projects created from the F# project templates. 18 years ago