1. 08 10月, 2020 2 次提交
  2. 07 10月, 2020 3 次提交
  3. 06 10月, 2020 1 次提交
  4. 29 9月, 2020 3 次提交
  5. 22 9月, 2020 1 次提交
  6. 18 9月, 2020 3 次提交
  7. 03 9月, 2020 2 次提交
  8. 01 9月, 2020 1 次提交
  9. 31 8月, 2020 1 次提交
  10. 24 8月, 2020 2 次提交
  11. 13 8月, 2020 2 次提交
  12. 12 8月, 2020 4 次提交
  13. 11 8月, 2020 1 次提交
  14. 10 8月, 2020 1 次提交
  15. 08 8月, 2020 2 次提交
    • J
      Delete our use of Microsoft.VisualStudio.CodingConventions · 8b3b74d8
      Jason Malinowski 提交于
      We had left this as a legacy mode for users who were running into
      issues. We recently reset the option for anybody using 16.7 builds
      after fixing some underlying issues, and we haven't heard any new
      issues.
      8b3b74d8
    • J
      Fix crash in the preview of a code action that modified an .editorconfig · 0dae2e98
      Jason Malinowski 提交于
      For reasons that aren't entirely clear, when we create a preview of
      a code fix, we remove and re-add documents that are being changed when
      we produce the PreviewWorkspace. This process had an bug which meant
      that the file path of an .editorconfig got dropped, so the resultant
      .editorconfig document path was null. This later caused a crash if
      the diagnostic engine, when processing the PreviewWorkspace's
      new solution, tried asking for a Compilation, since the null path would
      get passed to AnalyzerConfig.Parse(), and it would throw.
      
      This was exposed by #45076; until then if you had a preview of just
      an .editorconfig file, nothing would actually be analyzed and so
      nothing asked for the Compilation. The crash is "fixed" by #44331 in
      that asking for a Compilation no longer results in a call to
      AnalyzerConfig.Parse(); you have to ask for a Compilation and then do
      something with a semantic model. By luck, that doesn't happen in the
      common repro, but more obscure things absolutely could still fail.
      
      This is being tested by the integration test being added in #46639. We
      don't really have a good unit tests here as far as I can tell, but even
      then a unit test really doesn't validate any of the end-to-end here.
      
      Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1162464
      0dae2e98
  16. 06 8月, 2020 4 次提交
  17. 05 8月, 2020 2 次提交
  18. 04 8月, 2020 4 次提交
  19. 03 8月, 2020 1 次提交