1. 13 7月, 2016 2 次提交
  2. 11 7月, 2016 1 次提交
  3. 09 7月, 2016 1 次提交
  4. 01 7月, 2016 3 次提交
    • V
      Merge microupdate into master (#12258) · 5ee3bdd5
      Visual Studio Languages Snap Account 提交于
      * Merge pull request #12041 from heejaechang/buildsyncrace
      
      found one more case where documentId can be null
      
      * prevent VS from crashing if VS got shutdown while build error reporting is in progress.
      
      * Update our NuGet package version to 1.3.2
      
      * Update Microsoft.DiaSymReader.Native to 1.4.0 RTM (#12141)
      
      * Enable building of release nuget packages.
      
      This commit makes it so that we will always try to generate release nugets except if they depend on prerelease packages. If one of our nuget packages happens to depend on prerelease packages, then when building release nugets, we will simply print a message in the build output and skip release nuget generation for that package (and allow the overall build to succeed).
      
      * Address code review feedback.
      
      * Simplify script to use nuget.exe for prerelease dependency validation instead of adding custom logic in the script for this.
      
      * Remove Microsoft.CodeAnalysis.EditorFeatures from list of prerelease nuget packages.
      
      * Change the name of the error log file to skipped_packages.txt.
      
      * fixed DifferenceViewer leak
      
      this leak was responsible for about 14% of managed memory in customer's dump.
      
      basically, in certain condition, if cancellation exception is thrown, we will not close difference viewer which cause
      all text views to leak. that cause all taggers and text buffers to leak and that cause our preview workspaces to alive.
      which in turn cause all solutions to alive and so on. all those objects (view, buffer, workspace, solution) are quite
      big graphs. so ends up eat up 14% of memory.
      
      added assert to make sure if we leak viewers again, we get some kind of notification.
      5ee3bdd5
    • K
    • K
  5. 30 6月, 2016 1 次提交
  6. 28 6月, 2016 1 次提交
    • M
      Display analyzer assemblies with no applicable diagnostic analyzers t… (#12174) · 76d52fe5
      Manish Vasani 提交于
      * Display analyzer assemblies with no applicable diagnostic analyzers towards the end of analyzers list in solution explorer
      
      For most cases, these are analyzer depedencies with no analyzers.
      For few cases, these might be analyzer assemblies with no analyzers applicable for the given project langauge.
      For few other cases these might be analyzer assemblies whose diagnostic analyzers could not be instantiated for some reason, and hence have no rules.
      
      We still display such analyzers in the solution explorer so the user is aware that the project file contains these analyzer references, but display them towards the end to avoid clutter.
      
      Fixes https://github.com/dotnet/roslyn/issues/12047
      
      * Address PR feedback and completely hide the analyzer dependencies (analyzer assembly has no diagnostic analzyers and also has no load errors)
      76d52fe5
  7. 25 6月, 2016 1 次提交
    • H
      fixed DifferenceViewer leak · ec082ecc
      Heejae Chang 提交于
      this leak was responsible for about 14% of managed memory in customer's dump.
      
      basically, in certain condition, if cancellation exception is thrown, we will not close difference viewer which cause
      all text views to leak. that cause all taggers and text buffers to leak and that cause our preview workspaces to alive.
      which in turn cause all solutions to alive and so on. all those objects (view, buffer, workspace, solution) are quite
      big graphs. so ends up eat up 14% of memory.
      
      added assert to make sure if we leak viewers again, we get some kind of notification.
      ec082ecc
  8. 24 6月, 2016 1 次提交
  9. 23 6月, 2016 1 次提交
  10. 18 6月, 2016 2 次提交
  11. 17 6月, 2016 1 次提交
    • H
      loose up a bit on what happens when build error report on us errors on a file... · 2f5df277
      Heejae Chang 提交于
      loose up a bit on what happens when build error report on us errors on a file that doesn't exist in roslyn solution
      but have error code we own.
      
      we used to treat them as project level errors but that made us to sometime show one entry for multiple error reports.
      
      now, we will at least show all of them, but things like double click will not work since we don't know which document it is.
      2f5df277
  12. 16 6月, 2016 3 次提交
  13. 15 6月, 2016 1 次提交
  14. 14 6月, 2016 3 次提交
  15. 11 6月, 2016 1 次提交
  16. 10 6月, 2016 1 次提交
  17. 09 6月, 2016 1 次提交
  18. 07 6月, 2016 1 次提交
  19. 01 6月, 2016 1 次提交
  20. 26 5月, 2016 2 次提交
    • P
      Fix build · 93926ba3
      Paul Vick 提交于
      93926ba3
    • M
      Initialize the error list toggle state when error list is initialized (#11541) · d389334e
      Manish Vasani 提交于
      * Initialize the error list toggle state when error list is initialized
      
      Currently, we initialize the error list toggle state only when workspace changes (solution add/remove/reload or project add/remove/reload) OR when FSD options change. However, if you start VS and bring up error list without opening any solution or changing FSD options, we might show stale error list state if your settings file or settings store changed from last VS session. Fix is to initialize the error list toggle state as soon as error list is initialized.
      
      Fixes #11539
      
      * Don't change the error list toggle state on workspace changes.
      d389334e
  21. 25 5月, 2016 1 次提交
  22. 24 5月, 2016 3 次提交
  23. 21 5月, 2016 4 次提交
    • H
    • M
      Roslyn side changes for the new toggle button added to the Error list… (#11439) · d55123f8
      Manish Vasani 提交于
      * Roslyn side changes for the new toggle button added to the Error list to turn on/off full solution analysis
      
      We are moving the "Enable full solution analysis" option from Tools Option to the error list for improved discoverability, while also making it language agnostic. This change ensures that we set the Roslyn full solution analysis options when this button is toggled in the error list. Additionally, when we identify that the error list toggle button is available (Dev14 U3 or later), we will hide the tools option checkbox for "Enable full solution analysis" and show a note about it being moved to the error list. Note that we still continue with language specific defaults (C# off, VB on), but once the user has hit the error list toggle, the option setting is consistent across all languages.
      
      Addresses workitem https://github.com/dotnet/roslyn/issues/11392
      
      * Address PR feedback from Heejae - localization of strings.
      
      * Address PR feedback from Heejae
      
      * Address PR feedback
      
      * Move to newer MS.VS.Shell.14.0 dll to consume the new error list changes.
      
      * Move the code accessing the new IErrorList2 type into a separate method marked with [MethodImpl(MethodImplOptions.NoInlining)]
      d55123f8
    • T
      Fix reporting of EnC (and other) diagnostics (#11447) · 28776fdc
      Tomáš Matoušek 提交于
      * Fix reporting of EnC diagnostics
      
      * Keep original overloads on DocumentDiagnosticAnalyzer for compat with TS and F#
      28776fdc
    • N
      Postpone AnalyzerChanged operations when analyzer is changed on file system to... · 22d0d9f7
      Nat Ayewah 提交于
      Postpone AnalyzerChanged operations when analyzer is changed on file system to prevent deadlock #11019
      22d0d9f7
  24. 20 5月, 2016 2 次提交
  25. 19 5月, 2016 1 次提交