Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-01[Debugger] Fixed build(track debugger-libs API changes)David Karlaš
-Made it buildable on Windows without .Net 2.0/3.5(CorApi project is now .Net 4.5) -Ignored implict casting on CorDebug
2015-05-05[CorDebugger] Fixed "Bug 26237 - Debugger ignores non-zero based arrays" for ↵David Karlaš
CorDebugger and added unit test
2015-04-20Audit all usages of Path.GetInvalid*CharsMarius Ungureanu
Use the new refactored FilePath.* variant to ensure correctness.
2015-02-27[CorDebugger] Fixed variables evaluation with Roslyn assembliesDavid Karlaš
2015-02-27[CorDebugger] Fixing stepping over automatic properties with Roslyn compiled ↵David Karlaš
assembly
2015-02-24bumped debugger-libsJeffrey Stedfast
2015-02-23[CorDebugger] Use the CurrentExceptionTag instead of hard-coding ↵Jeffrey Stedfast
"__EXCEPTION_OBJECT__" Fixes bug #27235
2015-02-20Merge pull request #696 from mono/bug18351Jeffrey Stedfast
Bug18351
2015-02-20[CorDebugger] Hide compiler generated nested types as type membersDavid Karlaš
2015-01-24Merge branch 'debuggerVisualizers' into 'master'David Karlaš
Conflicts: main/external/debugger-libs main/src/core/MonoDevelop.Ide/ExtensionModel/StockIcons.addin.xml main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj version-checks
2015-01-20[CorDebug] Fixed handling of DebuggerAttributes when used on classDavid Karlaš
2015-01-20[DebuggerTests] Using Instruction stepping instead Line steppingDavid Karlaš
2015-01-17Add pdbonly to release configurations.Marius Ungureanu
2015-01-05Bug 18351 - Getting error message in InvariantCulture propertyMarius Ungureanu
This was caused by having concurrency between the debugger running and us requesting an evaluation. In that specific case, The debugger was waiting on the property being jitted and we caused a concurrency.
2014-11-20Merge commit 'fed6e4be43cbc107beca77af223a62ca88c5076f' into debuggerVisualizersDavid Karlaš
Conflicts: main/external/debugger-libs version-checks
2014-09-30Merge branch 'master' into debuggerVisualizersDavid Karlaš
Conflicts: main/external/debugger-libs
2014-09-08Merge remote-tracking branch 'origin/master' into xs6Alan McGovern
Conflicts: main/external/xwt version-checks
2014-08-27[Win32Debugger] Fixed condtional breakpoint when comparing numbersDavid Karlaš
2014-07-21Merge branch 'master' into debuggerVisualizersDavid Karlaš
Conflicts: main/external/debugger-libs main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.csproj main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
2014-07-15[Win32] Updated MTARawValue to refect outArgs changesDavid Karlaš
2014-07-07Merge remote-tracking branch 'mono/master' into xammac-2.0Lluis Sanchez
Conflicts: main/src/addins/AspNet/MonoDevelop.AspNet.Mvc/MonoDevelop.AspNet.Mvc.csproj main/src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.AspNet.csproj main/src/addins/Xml/MonoDevelop.Xml.csproj version-checks
2014-07-07[CorDebug] GetImplementedInterfaces implementationDavid Karlaš
2014-07-07[CorDebug] Support for interface names and MetadataType.GetInterfacesDavid Karlaš
2014-07-07Merge remote-tracking branch 'origin/bpDialog2'Lluis Sanchez Gual
Conflicts: main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
2014-06-24Use 4.5 framework in core and addinsMichael Hutchinson
Shared libraries can still use older frameworks.
2014-06-18[CorDebug] Fix ASP.NET addin referenceMichael Hutchinson
2014-06-18[AspNet] Massive overhaulMichael Hutchinson
* Merged ASP.NET and ASP.NET MVC addins - Added support for ASP.NET MVC in Web App projects, needed for ASP.MVC 5 projects * Cleaned and reorganized the codebase * Moved ASP.NET unit tests into separate assembly - Fixed some minor issues in Razor tests * Removed automatic translation of C# project/file templates to other languages - Only C# templates are included * Removed build-time updating of Web Forms CodeBehind - Update-on-save is still supported * Removed unmaintained remote deployment system - It was never supported on Windows/Mac - Removes dependency on Linux deployment addin * Updated ASP.NET MVC templates to ASP.NET MVC 5 - ASP.NET MVC reference is now a NuGet reference * Removed incomplete default doctype abstraction * All template used HTML5 doctype * Stetic is no longer used for UI * Fixed build warnings
2014-06-12Fixed breakpoints runningUngureanu Marius
2014-06-08[CorDebugger] Fixed evaluating of protected properties & unit testsDavid Karlaš
2014-06-05[CorDebugger] Bug 20264 ObjectValue.IsNull was not set as it should beDavid Karlaš
2014-05-24[DebuggerUnitTest] Added test for GetAllChildren on objectDavid Karlaš
[CorDebugger] Fixed bug to be able to view private properties
2014-05-23[CorDebugger] Fixed ArrayAdaptor.GetElementsDavid Karlaš
2014-05-15DebuggerSession memory leak fix so PDB is unlocked after debugging finishDavid Karlaš
2014-05-10[Debugger] "Application Output" pad error text is now red and Debug.Write(); ↵David Karlaš
and tracepoints text is now blue [Win32] Error output works now [DebuggerUnitTests] Added tests for Console.Write, Console.Error.Write and Debug.Write [DebuggerUnitTests] Removed redirecting debuggee Console.Write to unit tests logs [CustomSoftDebuggerEngine] Fixed inverted console output and error text
2014-05-09[Win32Debugger] Fixing "Application Output" not displaying Console.Write on ↵David Karlaš
Win32 debugger
2014-05-05[UnitTest] Adding more generic types resolvingDavid Karlaš
[UnitTest] Adding mocking of TypeResolver [Win32] Resolving nested classes [Win32] Fixed caching bug for generic types TextEditorResolverProvider can now resolve also generic types
2014-05-05[Win32] Fixing Bug13401 evaluating variables in method with asyncDavid Karlaš
[Win32] Fixing dictionary evaluluation
2014-05-05Merge pull request #528 from DavidKarlas/objCreateAndEnumCompareJeffrey Stedfast
Win32 ObjectCreation, Enum compare & Unit tests
2014-05-05[UnitTest] Debugger eval compare enumsDavid Karlaš
[UnitTest] Create objects with different constructors and Struct which is ignored atm because not working [Win32] Fixed comparing of enums [Win32] Fixed object creation
2014-05-03[UnitTests] Unit tests for evaluating listsDavid Karlaš
[UnitTests] Debugger unit tests try to pick latests Mono runtime [UnitTests] Debugger unit tests print runtime name and version [Win32] Fixed evalutating generic lists like List<> and Dictionary<,>
2014-05-02Merge pull request #75 from DavidKarlas/win32ArrayAndStringJeffrey Stedfast
Win32 debugger Array and String properties/methods support
2014-05-02Merge branch 'master' into retinaJeffrey Stedfast
2014-05-01RuntimeInvoke for ToString needs to force its way into the actually ↵Jeff Greene
implemented overload by passing an empty type args array
2014-04-27[UniTests] Debugger evaluation accesses NestedClassesDavid Karlaš
[Win32] Debugger is able to resolve nested classes
2014-04-25[Win32Debugger] Fixing placing breakpoint inside delegateDavid Karlaš
2014-04-25Merge pull request #53 from DavidKarlas/moreDebuggerTestsUngureanu Marius
Debugger unit tests and some Win32 debugger fixes
2014-04-25Merge pull request #33 from DavidKarlas/Win32PassTestsUngureanu Marius
Debugger UnitTests and Win32 debugger fixes
2014-04-25[UnitTests] Catchpoints, RunToCursor and SetNextStatemntDavid Karlaš
[Win32] Support for adding breakpoints on columns [Win32] Implemented SetNextStatement [Win32] IncludeSubclasses on Catchpoints works as it should [Win32] Removed dead code in OnUpdateModuleSymbols
2014-04-22[Debugger] Updated debugger unit tests to try and fix some SDB testsJeffrey Stedfast
2014-04-22Debugger UnitTests for evaluation and Win32 debugger evaluation fixesDavid Karlaš