1. 24 10月, 2016 2 次提交
  2. 22 10月, 2016 1 次提交
    • J
      TLDR: artifacts are going to move around in Binaries\Debug and the directory... · b9ba3e9e
      Jared Parsons 提交于
      TLDR: artifacts are going to move around in Binaries\Debug and the directory is going to get a lot bigger.
      
      At a high level build projects can be classified into three categories based on how they write output:
      
      - incorrect: a given output path is written to more than once with different contents
      - less correct: a given output path is written to more than once but always with the same content
      - correct: a given output path is written to exactly once
      
      Today the roslyn build is decidedly “incorrect” as pretty much every file is written directly into Binaries\Debug. This means it ends up writing pretty much every Visual Studio SDK DLL twice: once for Dev14 and once for Dev15. For example at various points in the build Binaries\Debug\Microsoft.VisualStudio.Text.Data.dll may refer to Dev14 and at others it’s Dev15. If this seems like a scary proposition for a build that’s because it is indeed scary and it has real consequences. By now pretty much everyone on the team has hit the build race condition that is dragging down our PRs.
      
      The general fix here is to move build outputs into separate directories. Instead of building to $(Configuration) projects now build into say $(Configuration)\Exes\$(MSBuildProjectFileName). This will have a substantial increase in the size of Binaries. We will be looking into ways to reduce that. In the short term though build stability far outweighs the size increase.
      
      This change takes us most of the way to "correct". There are several places I had to compromise in order to get this initial change in:
      
      - UnitTests still build to a common output folder (one for Dev14, another for Dev15). Pulling unit tests apart is going to take a bit of work.
      - Every project has a <RoslynProjectType> entry. This will go away in the future for most projects. It's temporarily needed so I can fix roslyn-internal in parallel without taking down the build.
      - VSL.Imports.targets is messy. Unavoidable for now due to the above. It will get cleaner as I iterate on this.
      
      None of these are relevant to the underlying race condition. Hence it's okay to push them off.
      b9ba3e9e
  3. 08 10月, 2016 1 次提交
  4. 06 10月, 2016 1 次提交
  5. 30 9月, 2016 1 次提交
  6. 26 8月, 2016 1 次提交
  7. 24 8月, 2016 1 次提交
  8. 17 8月, 2016 1 次提交
    • J
      Remove ImportGroup · 9f431374
      Jared Parsons 提交于
      The ImportGroup element is just noise.  It was also used very inconsistently in the repo and often within the same project file.  Just remove it.
      9f431374
  9. 10 8月, 2016 1 次提交
  10. 25 7月, 2016 1 次提交
  11. 21 7月, 2016 2 次提交
    • B
      Rename AbstractMoveTypeTestsBase to · 3df84a93
      Balaji Krishnan 提交于
      AbstractMoveTypeTest
      3df84a93
    • B
      Add scaffolding code to test MoveType · 767427bb
      Balaji Krishnan 提交于
      AbstractMoveTypeTestsBase implements shared helpers for testing MoveType
      Refactoring.
      
      CSharpMoveTypeTestsBase and BasicMoveTypeTestsBase contain language
      specific test helpers.
      
      Tests are organized as MoveTypeTests.<CodeAction>.cs/vb
      
      where code actions are
      Move type to new file
      Rename type to match filename
      Rename file to match typename etc.
      
      The feature code is mostly language agnostic, so it suffices if we pick
      one language and test it heavily and make sure simple things and
      language specific parts work as expected, on the other language.
      767427bb
  12. 01 7月, 2016 1 次提交
    • 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
  13. 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
  14. 24 6月, 2016 1 次提交
  15. 16 6月, 2016 1 次提交
  16. 13 5月, 2016 1 次提交
    • K
      Get build working with VS "15" again · eea2452c
      Kevin Pilch-Bisson 提交于
      1. Reference a bunch of stuff from Nuget packages instead of VS.
      2. Move to Update 2 versions of packages.
      3. Now that we are using the packages, we're referencing
         Microsoft.VisualStudio.Shell.14.dll instead of .15 again.  This means
         that types that moved to Shell.Immutable.15 are not type forwarders.
         Luckily we didn't need anything from Shell.Immutable.15 in the project
         where it was a problem.
      eea2452c
  17. 19 4月, 2016 1 次提交
  18. 11 4月, 2016 1 次提交
  19. 08 3月, 2016 1 次提交
  20. 05 3月, 2016 1 次提交
  21. 02 3月, 2016 1 次提交
  22. 27 2月, 2016 1 次提交
  23. 25 2月, 2016 1 次提交
    • H
      Roslyn part of IntellisenseBuildResult · c4923df8
      Heejae Chang 提交于
      this should make roslyn to turn off full project diagnostics when intellisense build is failed for the project.
      
      when we detect intellisense build failure, VS should put actionable data in error list detail pane.
      also bing search for the issue should work as well if one prefer blogs.
      
      this change also fix some issue on cross language p2p references. before there was case where we fail to connect cross language p2p reference causing a lot of errors.
      
      this change also include bulk diagnostic update events improvement. this should let us to deal better (especially when we clean those up) when there are a lot of diagnostics.
      c4923df8
  24. 24 2月, 2016 1 次提交
  25. 06 2月, 2016 1 次提交
  26. 30 1月, 2016 2 次提交
  27. 29 1月, 2016 2 次提交
  28. 16 1月, 2016 3 次提交
  29. 14 1月, 2016 1 次提交
  30. 01 12月, 2015 1 次提交
  31. 24 11月, 2015 2 次提交
  32. 20 11月, 2015 1 次提交
  33. 12 11月, 2015 1 次提交