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
2018-08-08bump md-addinsopenjdk-updaternosami
2018-08-08[Ide] Clear BuildOutput when clean operations startRodrigo Moya
Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/641608
2018-08-08Updated reference to xamarin/md-addins@f49a0d8marius.ungureanu
2018-08-08Forgot thistherzok
2018-08-08Remove MonoMactherzok
2018-08-07Fixes VSTS Bug 659996: [Feedback] VS Mac 2017 - Pick members toMike Krüger
override for a class window doesn't render options correctly https://devdiv.visualstudio.com/DevDiv/_workitems/edit/659996 Can't reproduce what's seen in the screenshot howover this test case fails for me which is fixed by that patch.
2018-08-06Updated reference to xamarin/md-addins@894371bgreg.munn
2018-08-06[Editor] Simplify editor config context querying a bittherzok
Fixes VSTS #657369 - EditorConfig context is queried even for files which will not use it
2018-08-06Fixes VSTS Bug 656191: Invalid text editor theme can crash the IDEMike Krüger
https://devdiv.visualstudio.com/DevDiv/_workitems/edit/656191
2018-08-06Merge pull request #5517 from mono/master-issue4110Mike Krüger
Fixes issue #4110 Inconvenient behavior of Ctrl+Right and Ctrl+Left
2018-08-06Merge pull request #5525 from mono/master-issue5521Mike Krüger
Fixes issue #5521 Code completion incorrectly inserts code These
2018-08-04[Windows] Fix Coverity VSTS lanetherzok
2018-08-04Add URL to roslyn version <-> lang mappingMarius Ungureanu
2018-08-04Explicitly define language versionstherzok
2018-08-04Always set the LangVersion to latest for C#therzok
This allows us to use newer features like default literal, new valuetype ref semantics, private protected, stackalloc arrays
2018-08-04[Ide] Add backwards compatibility for any language service using the old ↵therzok
search interface
2018-08-04Temporarily hack roslyn search category tests and add tracked roslyn issuetherzok
2018-08-04[Ide] Fix Roslyn search category teststherzok
2018-08-04Some more triestherzok
2018-08-04[Ide] Allow roslyn search category tests to run as standalonetherzok
2018-08-04[Ide] Add some runtime imports for Ide depstherzok
2018-08-04Bump binary compat baselinetherzok
2018-08-04F# bump for SRM and SCItherzok
2018-08-04Bump Coding Conventionstherzok
2018-08-04Bump SRMtherzok
2018-08-04Fix roslyn API breakagestherzok
2018-08-04Fixup SCI bumptherzok
2018-08-04Bump System.Collections.Immutabletherzok
2018-08-04Bump roslyn to latest 15.8 beta packagetherzok
2018-08-03Add binding redirect for Microsoft.Diagnostics.Tracing.EventSource.dll.Kirill Osenkov
Looks like we ship 1.1.28.0 in the app bundle, but some .dlls reference a smaller version.
2018-08-03Updated reference to xamarin/md-addins@6291e9bmarius.ungureanu
2018-08-03Fix typo in evaluation timingstherzok
Was going through some old gists, found this typo
2018-08-02Updated references to mono/xwt, xamarin/md-addinsgreg.munn
2018-08-02System.IO.Compression fixupstherzok
2018-08-02Bump IC#Code Decompiler to roslyn versiontherzok
2018-08-02Consolidate System.IO.Compressiontherzok
2018-08-02Consolidate System.ValueTuple target frameworktherzok
2018-08-02[Core] Sort nuget packages.configtherzok
2018-08-02Updated reference to xamarin/md-addins@023398agreg.munn
2018-08-02Merge pull request #5575 from mono/master-bump-versionGreg Munn
Update after branching
2018-08-02Updated reference to mono/mono-addins@8450b7cmarius.ungureanu
2018-08-02Merge pull request #5562 from mono/dev-kirillo-fix645707Kirill Osenkov
Fix VSTS 645707: HTML tag smart indent doesn't work with Tabs
2018-08-02Merge pull request #5561 from mono/dev-kirillo-fix645599Kirill Osenkov
Fix VSTS 656752 (Classification doesn't update)
2018-08-02Update after branchingGreg Munn
2018-08-02[Ide] Fix autosave not loading autosaved fileMatt Ward
With unsaved changes in the text editor, and the IDE crashes, on re-starting the IDE, and opening the solution containing the file that was unsaved, the editor was not showing the 'An autosave file has been found for this file' message in the text editor. Instead the text editor was showing a message saying that the file had been changed outside the IDE. The Keep Changes button if clicked would result in an empty file in the text editor and the file changes would be lost. The problem was that on loading the file with an associated autosave file the last write time was being updated which caused the file watcher to raise a file changed event. This then caused the autosave message to be replaced with the file has been changed outside the IDE message. The SdiWorkspaceWindow's SetTitleEvent method would change the last write time of the file if the text editor view indicated it was dirty. To avoid this when an SdiWorkspaceWindow is created, either on opening a file, or by docking the text editor view side by side in the IDE, the SetTitleEvent now does not change the file's last write time. Fixes VSTS #656105 - Autosave does not load autosaved file
2018-08-02Updated reference to xamarin/md-addins@787585ematt.ward
2018-08-02Merge pull request #5550 from mono/fix-656654Jason Imison
Limit the number of placeholder type signature markers
2018-08-02Fix VSTS 645707: HTML tags don't get smart indent when formatting policy is ↵Kirill Osenkov
switched to Tabs Our ITextCaret.ContainingTextViewLine implementation was wrong, it was taking a virtual position, not buffer position, returning null. Separate issue: when we were in virtual space, and the editor was set to Tabs, the col calculation was incorrect. Didn't divide by TabSize and increment by 1.
2018-08-02Fix VSTS 656752 (Classification doesn't update)Kirill Osenkov
Fix VSTS 645599 (ArgumentOutOfRange in Razor) Update MdTextViewLineCollection to the latest editor Snapshot when buffer changes. We've had a number of issues in TagBasedSyntaxHighlighting where some lines were partially translated to the latest snapshot, but created a discrepancy because a SnapshotSpan would be tracked to latest, but a DocumentLine wouldn't get translated. Now we re-add the lines we want to reuse against the latest snapshot, and the changed lines would be added later by the layout engine. Removing the incorrect fix to translate lines as it didn't properly translate the DocumentLine of an MdTextViewLine.
2018-08-01Merge pull request #4683 from mono/master-fix593840Matt Ward
Fix 593840: MetadataReferenceCache implementation does IO on the UI thread