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
2019-01-16Remove redundant build infrastructureMikayla Hutchinson
The old autotools build infrastructure is largely redundant, as projects are now built with msbuild. Remove as much as can be done easily, along with some other obsolete stuff.
2019-01-13Suppress NuGet local copies unless explicitly listed in projectMikayla Hutchinson
NuGet's PrivateAssets="runtime" does not work, resulting in transitive references local copying their assemblies into every project. This works around that by filtering out all local copies that are not explictly listed. This also makes it much harder to accidentally introduce local copies, which is good as local copies in general are are not desirable due to the way that dlls are loaded by the extension system.
2018-06-20Clean up project filesMikayla Hutchinson
Remove redundant information, and make more information redundant by setting good defaults in the MD props. This lays some groundwork for the PackageConfig migration and eventually SDK-style project format migration.
2018-06-20Centralize the MD target framework versionMikayla Hutchinson
2018-06-20Clean various redundancies from project filesMikayla Hutchinson
2018-02-16Make dist2 (#3879)Marius Ungureanu
* Fix `make dist` (cherry picked from commit 7732445e89434e17ff1e0217a640d841b29d5fc9) * Don't strip assemblies from tarballs. It'll make distro packagers cry, but the tarballs will actually work. (cherry picked from commit b1820981f8acced4d4b721ce44ed5860ce8fb758) * Include case-sensitivity fix from NRefactory * Ensure BuildVariables.cs is up to date and in `make dist` tarballs
2017-03-18Fix bad merge that broke WindowsMikayla Hutchinson
Wrong files were kept, wrong file was deleted
2017-03-14Merge vNext into roslyn-ivtDavid Karlaš
# Conflicts: # main/src/addins/MonoDevelop.Debugger.Win32/CorApi/CorApi.csproj # main/src/addins/MonoDevelop.Debugger.Win32/CorApi2/CorApi2.csproj # main/src/addins/MonoDevelop.Debugger.Win32/Mono.Debugging.Win32/Mono.Debugging.Win32.csproj # version-checks
2017-03-13Remove Win32 debugger from MD main repo (moved to 'debugger-libs')Artem Bukhonov
2017-03-13Fix referencesArtem Bukhonov
2017-03-11Line endings restore in FieldReference.csArtem Bukhonov
2017-03-11CorDebug: Do not hide members marked with CompilerGeneratedAttributeArtem Bukhonov
(cherry picked from commit 47cbbf4)
2017-03-11CorDebug: Instantiations for properties (including indexers)Artem Bukhonov
(cherry picked from commit 7f13864)
2017-03-11CorDebug: reading of string, float, double and bool constants from metadata.Artem Bukhonov
(cherry picked from commit 97c1a6a)
2017-03-11Fix NREs in GetParameters etc.Artem Bukhonov
(cherry picked from commit 8b2b5f9)
2017-03-11TryCast fix to allow cast null object to any type.Artem Bukhonov
(cherry picked from commit a480101)
2017-03-11fixed handle-all problemArseny Chernyaev
(cherry picked from commit 32f7685)
2017-03-11MtaThread: throwing the original exception itself instead of wrapping with ↵Artem Bukhonov
Exception. Otherwise the callsite may fail with logic in catch blocks, because all the exceptions will be wrapped (cherry picked from commit 5ee8857)
2017-03-11Handle and wrap CORDBG_E_STATIC_VAR_NOT_AVAILABLE exceptionArtem Bukhonov
(cherry picked from commit d5d81ea)
2017-03-11CorValRef.IsAlive() should return true if val==null, because it's valid ↵Artem Bukhonov
value. Before this all void methods were evaluating for two times because "void" method evaluates to null result in eval which was accepted as invalid . (cherry picked from commit b8e6e00)
2017-03-11Subscribe on BusyStateChangedArtem Bukhonov
(cherry picked from commit 1eadfcc)
2017-03-11implemented OnException handlerArseny Chernyaev
(cherry picked from commit c5583ba)
2017-03-11wrap all exception on evaluationArseny Chernyaev
(cherry picked from commit 003b035)
2017-03-11handle exception on breakpoint condition evaluationArseny Chernyaev
(cherry picked from commit b2acc57)
2017-03-11Call ObjectAdapter.CancelAsyncOperations ()Artem Bukhonov
(cherry picked from commit a1fb0de)
2017-03-11A lot of calls in CorObjectAdaptor were made more safe - wrapped with ↵Artem Bukhonov
try-catch and logging. (cherry picked from commit 80432e5)
2017-03-11Silently and properly handle COMException in GetThisReference and ↵Artem Bukhonov
GetHoistedReference (cherry picked from commit b3b45f2)
2017-03-11Get rid of checking for Managed frame. This causes a huge performance ↵Artem Bukhonov
impact, but is not needed because we're fetching only managed frames. (cherry picked from commit 208fa88)
2017-02-10Don't try to build docs for project with missing includesMikayla Hutchinson
2017-02-10Fix imports and IVTs for Windows-only projectsMikayla Hutchinson
2017-01-31Merge remote-tracking branch 'origin/vNext' into roslyn-ivtMikayla Hutchinson
2017-01-31Merge branch 'master' into textmateMike Krüger
2017-01-27NRE fix in GetTypeName()Artem Bukhonov
(cherry picked from commit 1c08af3)
2017-01-27Isolation of COMException in GetFrames(). Sometimes fetching frames may ↵Artem Bukhonov
throw CORDBG_E_BAD_THREAD_STATE, and we should handle it. Otherwise the debugger event thread will be corrupted. (cherry picked from commit 39d4670)
2017-01-27Merge pull request #1817 from JetBrains/nuspecVersionFixDavid Karlaš
Using buildver variable
2017-01-26Move CorApi assemblies to to net45 dir in nupkg (to be near to *Win32.dll)Artem Bukhonov
(cherry picked from commit 0fc575e)
2017-01-26Using buildver variable instead of Version because Version can't be used in ↵Artem Bukhonov
<dependency> tag (cherry picked from commit e9cc176)
2017-01-26Merge remote-tracking branch 'xamarin/vNext' into roslyn-ivtMikayla Hutchinson
2017-01-26Import path fixArtem Bukhonov
2017-01-25Merge pull request #1812 from JetBrains/win32DebuggerCustomPropsDavid Karlaš
Custom properties for Win32 debugger projects
2017-01-25Custom properties for Win32 debugger projects. (Used to sign with custom key)Artem Bukhonov
2017-01-25Merge pull request #1805 from JetBrains/rider-nugetsDavid Karlaš
Nuspecs
2017-01-25Merge pull request #1810 from JetBrains/win32DebuggerSlnDavid Karlaš
Solution file for Win32 debugger to build it independently
2017-01-25Solution file for Win32 debugger to build it independentlyArtem Bukhonov
2017-01-25insert corFunctionBreakpoints in several app domainsArseny Chernyaev
2017-01-25Merge remote-tracking branch 'monodevelop/dotnetcore' into vNextMatt Ward
Conflicts: main/external/mono-addins main/src/addins/MonoDevelop.DotNetCore/MonoDevelop.DotNetCore.csproj main/src/addins/MonoDevelop.DotNetCore/MonoDevelop.DotnetCore.Debugger/DotNetCoreDebuggerSession.cs main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.TypeSystem/MonoDevelopWorkspace.cs version-checks
2017-01-24NuspecsArtem Bukhonov
2017-01-18Merge remote-tracking branch 'xamarin/vNext' into roslyn-ivtMikayla Hutchinson
2017-01-17Merge pull request #1789 from JetBrains/breakpointDeactivationFixDavid Karlaš
[CorDebug] Proper deactivation of breakpoints
2017-01-17[CorDebug] Proper deactivation of breakpointsArtem Bukhonov