1. 15 11月, 2016 1 次提交
  2. 03 11月, 2016 1 次提交
  3. 31 10月, 2016 1 次提交
  4. 30 10月, 2016 2 次提交
  5. 21 10月, 2016 2 次提交
  6. 20 10月, 2016 2 次提交
  7. 10 10月, 2016 1 次提交
  8. 08 10月, 2016 1 次提交
  9. 04 10月, 2016 1 次提交
  10. 20 9月, 2016 1 次提交
  11. 30 8月, 2016 1 次提交
    • M
      Explicitly state that suppression state column in error list is only supported... · 4fe9116e
      Manish Vasani 提交于
      Explicitly state that suppression state column in error list is only supported for intellisense diagnostics (#13387)
      
      1. Suppression state column shows N/A for build diagnostics.
      2. A descriptive tooltip is now shown on error list entries with unsupported suppression state, guiding users to switch to intellisense diagnostics for suppression.
      
      Fixes #11371
      4fe9116e
  12. 24 8月, 2016 1 次提交
  13. 12 8月, 2016 1 次提交
  14. 10 8月, 2016 4 次提交
  15. 28 7月, 2016 1 次提交
  16. 27 7月, 2016 1 次提交
  17. 21 7月, 2016 2 次提交
  18. 20 7月, 2016 1 次提交
  19. 26 5月, 2016 1 次提交
  20. 24 5月, 2016 3 次提交
  21. 21 5月, 2016 1 次提交
  22. 28 4月, 2016 1 次提交
    • D
      Accessibility Improvements · 39815e1b
      David Poeschl 提交于
      Extract Interface (fixes #9958)
      - Read textbox labels
      - Read extractable members
      
      Generate Type (fixes #9959)
      - Read label text on dropdowns
      - Read combobox items
      
      Change Signature (fixes #9957)
      - Read parameter and button text
      
      Options pages (fixes #9962)
      - Read labels/checkboxes/radiobuttons
      39815e1b
  23. 08 3月, 2016 1 次提交
  24. 05 3月, 2016 1 次提交
  25. 04 3月, 2016 1 次提交
  26. 02 3月, 2016 1 次提交
  27. 01 3月, 2016 4 次提交
    • D
      Code Style: Analyzer/Fixer/Options for naming conventions · 8051eec3
      David Poeschl 提交于
      Implements #7064
      
      This change includes:
      
      - An analyzer and codefix for enforcing naming styles and fixing symbol names to comply with a chosen & configurable set of naming rules.
      - A set of Enforcement Levels that can be applied to different naming rules.
      - A mechanism for linking from a lightbulb preview to the option that caused the related diagnostic to be created (could be moved to a different PR or release)
      - Moving of the "Formatting" options pages under the Code Style node.
      8051eec3
    • H
      Jason believe checking missing metadata in place in FinalizeCompilation... · 91b310bc
      Heejae Chang 提交于
      Jason believe checking missing metadata in place in FinalizeCompilation shouldn't be that much perf impact and I asked tomas and he agree. so my implementation might have been just me paranoid about allocations and perf regression.
      
      removed tracking and just do simple check in FinalizeCompilation.
      91b310bc
    • B
      Localize strings. · 69e9c10b
      Balaji Krishnan 提交于
      69e9c10b
    • C
      Update loc files. · c3c0278a
      CyrusNajmabadi 提交于
      c3c0278a
  28. 26 2月, 2016 1 次提交
    • H
      Track metadata missing. · 416cdaf5
      Heejae Chang 提交于
      Jason left feedback on devdiv side PR about active config change which I didn't thought of before.
      
      so, I tested it and it surfaced some issues. first is, doing reload projects on intellisense build failure can be expensive in some cases, since we already in push mode for workspace events. so, I implemented all the plumbing so that we can just update that one bit.
      
      another issue I found is that, when there is cross language p2p reference A -> B. if B fails on intellisense build, B basically has no information including output path, which means it will not be resolved as cross language p2p reference to A. so, for A's point of view, there is no missing information and think it is fully loaded (since A don't consider B as its dependency), it just thinks one of its file reference (B's output path) is missing. so we end up again shows bunch of errors.
      
      there was no way to resolve this issue except tracking missing metadata reference, so I tried to find cheapest way to track this as much as I can. since we are snapshot model, and file is external to us, I couldnt find a solution which is 100% bullet proof except we checking it every time we create compilation but that is too expensive for the code path. so I check file at the metadata entry point. and rely on our file change notification to correct itself if snapshot become out of sync with reality.
      
      this should fix this another cross language reference issue.
      416cdaf5