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-07-23[Core] CreateSolutionItem should be ConfigureAwait(false)therzok
Accidentally capturing the UI context can cause an UI thread.
2019-07-23[Core] Specify TaskScheduler for the solution load continuationtherzok
TaskScheduler.Current is implied, so if the caller code changes, the code will end up running on the UI thread
2019-07-22Updated reference to xamarin/md-addins@d4cf053manish.sinha
2019-07-22Merge pull request #8253 from mono/service-lockingMarius Ungureanu
[Core] Add some extensions to ReaderWriterLockSlim and showcase usage
2019-07-22[Core] Add an example usage of ReaderWriterLockSlimtherzok
this should improve parallelism on concurrent reads from the assembly name cache
2019-07-22[Core] Add ReaderWriterLockSlim extensions for disposable lockingtherzok
2019-07-22Merge pull request #8246 from mono/msbuild-pi-keyMarius Ungureanu
[Core] Avoid allocating strings for keys when loading the MSBuild pro…
2019-07-22Merge pull request #8243 from mono/root-workspace-cleanupsMarius Ungureanu
[Ide] Small cleanup and optimization in RootWorkspace
2019-07-22Merge pull request #8250 from mono/msbuild-safe-parseMarius Ungureanu
[Core] Remove redundant condition checks
2019-07-22Merge pull request #8251 from mono/msbuild-cleanupMarius Ungureanu
[Core] Small cleanups in DefaultMSBuildEngine
2019-07-22Merge pull request #8244 from mono/array-extensionLluis Sanchez
[Core] Add extension on Array to shadow IEnumerable.Contains
2019-07-22Merge pull request #8245 from mono/dnc-unused-fileLluis Sanchez
[DotNetCore] Remove unused file
2019-07-21[Ide] Remove unused DocumentManager methodtherzok
2019-07-21[Ide] Remove redundant ToArraytherzok
2019-07-21Avoid enumerating GetAllItems for each open documenttherzok
This should fix some performance issue when closing a decently sized workspace with 20 open documents.
2019-07-21[Core] Small cleanups in DefaultMSBuildEnginetherzok
Unroll LINQ in a loop code, use lambda instead of delegate notation and remove an unused method
2019-07-21[Core] Remove redundant condition checkstherzok
SafeParseAndEvaluate already does a check for the condition being empty. Remove the redundant checks and invert some conditions
2019-07-21[Core] Avoid allocating strings for keys when loading the MSBuild projecttherzok
2019-07-21[DotNetCore] Remove unused filetherzok
2019-07-21Optimize some boxing from IEnumerable.Containstherzok
2019-07-21[Core] Add an overload for Array which should fix most usages of ↵therzok
IEnumerable.Contains on arrays The new method shadows the old one, so we get quite a few performance improvements, most in the project model
2019-07-19Updated reference to xamarin/md-addins@c695fd0manish.sinha
2019-07-19Merge pull request #8195 from mono/master-vsts943824Lluis Sanchez
Fixes VSTS FeedbackTicket 943824: Diff Incorrect
2019-07-18Updated reference to xamarin/md-addins@3d83b2amanish.sinha
2019-07-18Merge pull request #8222 from mono/pr-david-fixGetCodeAnalysisProjectAsyncDavid Karlaš
Make `TypeSystemService.GetCodeAnalysisProjectAsync` return actual value when solution is still loading
2019-07-18Updated reference to xamarin/md-addins@1b1385aabock
2019-07-18Merge pull request #8225 from mono/master-vsts820341Mike Krüger
Fixed Bug 820341: [Feedback] Unable to print code
2019-07-18Merge pull request #8119 from mono/fix-941229Vsevolod Kukol
[BuildOutput] Simplifies and removes delay cancellation in SearchCanBeCanceled test
2019-07-18Merge pull request #8213 from mono/fix905844-proper-bundle-icon-accessVsevolod Kukol
[Mac] Fix NSImageCacheException exception when getting the app icon
2019-07-18Merge pull request #8071 from mono/fix-936531Vsevolod Kukol
Change Key binding scheme for Visual Studio for Mac
2019-07-18Merge pull request #8221 from mono/pr-folder-publish-consoleJose Miguel Torres
[DotNetCore] Enable "Publish to folder" command for all .NET Core projects
2019-07-18Fixed Bug 820341: [Feedback] Unable to print codeMike Krüger
https://devdiv.visualstudio.com/DevDiv/_workitems/edit/820341 The only way to ensure that the theme can be printed in a good quality is to use the default light theme for printing. The same with the font size - it used to be the editor zoom factor but setting it to a constant zoom facotr gives the print code the control over the size. Fonts currently are way bigger than they should be in printing.
2019-07-18Fixes VSTS FeedbackTicket 943824: Diff IncorrectMike Krüger
https://devdiv.visualstudio.com/DevDiv/_workitems/edit/943824 Diff View could be loaded before the text view had the text - that caused that the "local" text was empty. The blame view had the same issue (but crashed) - fixed that as well.
2019-07-18Merge pull request #8218 from mono/pr-ryzngard-roslyn-3.3.0-beta1-19360-03Sandy Armstrong
Bump Roslyn to 3.3.0-beta1-19360-03
2019-07-18Updated reference to xamarin/md-addins@490bac8sandy
2019-07-17Updated reference to xamarin/md-addins@20aaf4dgreg.munn
2019-07-17Merge pull request #8223 from mono/pr-abock-useful-consolidationAaron Bockover
Editor: add new Imaging defs project
2019-07-17Updated reference to xamarin/md-addins@6c75fb2abock
2019-07-17Editor: add Imaging.csprojAaron Bockover
2019-07-17Updated references to microsoft/vs-editor-api, xamarin/md-addinsabock
2019-07-17Make `TypeSystemService.GetCodeAnalysisProjectAsync` return actual value ↵David Karlaš
when solution is still loading Main difference between `TypeSystemService.GetCodeAnalysisProjectAsync` and `TypeSystemService.GetCodeAnalysisProject` should be that `Async` version can be called before project/solution is fully loaded and `await` for it to be loaded and then return correct result, `non-Async` version should return project if currently or else `null`.
2019-07-17[DotNetCore] Enable "Publish to folder" command for all .NET Core projectsRodrigo Moya
Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/945334
2019-07-17Updated reference to xamarin/md-addins@e36b029lluis
2019-07-17Updated reference to xamarin/md-addins@ae15583lluis
2019-07-17Fixes VSTS #936531 - Key binding scheme for Visual Studio for Mac should be ↵Javier Suárez Ruiz
"Visual Studio for Mac" rather than "Visual Studio"
2019-07-17Merge pull request #8211 from mono/backport-pr-8200-to-masterLluis Sanchez
[master] Update translations
2019-07-17Merge pull request #8212 from mono/newWebLluis Sanchez
New WebEditors
2019-07-17[BuildOutput] Simplifies and removes delay cancellation in ↵Jose Medrano
SearchCanBeCanceled test Fixes VSTS #941229 - MonoDevelop.Ide.BuildOutputTests.CustomProject_SearchCanBeCanceled very unreliable
2019-07-17Updated reference to xamarin/md-addins@7709cbdlluis
2019-07-17Merge pull request #8137 from mono/master-vsts940831Mike Krüger
Fixes VSTS Bug 940831: "Authors" (Blame) tab fails to load