1. 07 7月, 2016 18 次提交
  2. 06 7月, 2016 4 次提交
    • N
      Merge pull request #11055 from tvsonar/qualityfixes · 80848dcf
      Neal Gafter 提交于
      Removing redundancies in conditionals and useless string.format
      80848dcf
    • N
      Merge pull request #12329 from gafter/master-12061 · e1021801
      Neal Gafter 提交于
      Cut short recursion that can occur (by spec!) in the better betterness code.
      e1021801
    • J
      Merge pull request #12151 from jasonmalinowski/fix-build-versioning · ace73c51
      Jason Malinowski 提交于
      Fix build versioning variables and stamping
      ace73c51
    • V
      Merge microupdate into master (#12340) · 979425c8
      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.
      
      * Skipping the InteractiveWindow Clipboard UnitTests as they cannot run on VS2015.2
      979425c8
  3. 05 7月, 2016 10 次提交
    • N
      Make the recursion limit for better conversion target a private const · 9f7158ea
      Neal Gafter 提交于
      and calls outside the recursion call a version of the method that does not
      have the recursion limit parameter. (As suggested by code review)
      9f7158ea
    • N
      Merge pull request #12335 from svick/throw-in-invocation-hang · 0317409e
      Neal Gafter 提交于
      throw is not a possible expression
      0317409e
    • V
      Merge microupdate into master (#12337) · d886a608
      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.
      
      * Skipping the InteractiveWindow Clipboard UnitTests as they cannot run on VS2015.2
      d886a608
    • J
      5919bc48
    • J
      Properly restore packages for the Roslyn SDK · 3a298c15
      Jared Parsons 提交于
      3a298c15
    • J
      Undo adding build task to the VSIX · cce2cad3
      Jared Parsons 提交于
      cce2cad3
    • J
      Fixed the open paths · 2b3eb249
      Jared Parsons 提交于
      2b3eb249
    • J
      Test Resources Proprietary · 0256a7fb
      Jared Parsons 提交于
      0256a7fb
    • J
      Setup build mostly working · c5c5c543
      Jared Parsons 提交于
      c5c5c543
    • B
      Moving code from closed · 22177406
      beep boop 提交于
      22177406
  4. 04 7月, 2016 4 次提交
    • T
      Removing useless string.format call · 0cecbd84
      Tamas Vajk 提交于
      0cecbd84
    • T
      Removing redundancies in conditionals · 68f1fe63
      Tamas Vajk 提交于
      68f1fe63
    • V
      Merge microupdate into master (#12330) · d04f1d6a
      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.
      
      * Skipping the InteractiveWindow Clipboard UnitTests as they cannot run on VS2015.2
      d04f1d6a
    • P
      throw is not a possible expression · e3cc9315
      Petr Onderka 提交于
      This was causing infinite loop for code like "F(throw".
      e3cc9315
  5. 02 7月, 2016 4 次提交
    • N
      Cut short recursion that can occur (by spec!) in better betternes · 69c3ac38
      Neal Gafter 提交于
      This handles the simplest cases that are likely to arise in practice. We simply limit
      direct recursion in "better conversion target" to a depth of 100.
      See #12061 for the related spec bug. The spec still must be adjusted to say what should happen here,
      and the implementation will need to be changed to follow that new specification.
      69c3ac38
    • J
      Tweak how we specify versions in VSL.Versions.targets · f3610680
      Jason Malinowski 提交于
      - Introduce a new variable, RoslynFileVersionBase, which specifies the
        file version base we will use. This controls the file version as
        stamped in the PE, and also the version that's used for our NuGet
        packages.
      - Rename RoslynSemanticVersion to RoslynAssemblyVersionBase so it's
        more clear what that's used for.
      - Ensure that the PE file version header changes for each day, to give
        some protection that build-to-build upgrade correctly works for
        MSI-based installs, and also for sanity so you can have some hope
        when looking at a binary on disk.
      f3610680
    • J
      Remove support for building C++ in the Roslyn tree · 3d208c50
      Jason Malinowski 提交于
      We haven't used this for ages, and is most likely terribly broken.
      3d208c50
    • V
      Merge microupdate into master (#12318) · 2316dd86
      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.
      2316dd86