1. 19 11月, 2019 1 次提交
  2. 15 11月, 2019 1 次提交
  3. 14 11月, 2019 1 次提交
  4. 09 11月, 2019 1 次提交
  5. 07 11月, 2019 1 次提交
  6. 01 11月, 2019 1 次提交
  7. 30 10月, 2019 1 次提交
  8. 18 10月, 2019 1 次提交
  9. 27 9月, 2019 1 次提交
    • M
      Move to Platform team's FAR Kind Column · ec73f602
      Manish Vasani 提交于
      Delete a bunch of code on Roslyn side, which is no longer necessary as we don't own the column anymore.
      I have also cleanup up some code in this space for newly added ContainingType and ContainingMember columns.
      ec73f602
  10. 20 9月, 2019 1 次提交
  11. 30 8月, 2019 1 次提交
  12. 17 7月, 2019 1 次提交
  13. 24 6月, 2019 1 次提交
  14. 21 6月, 2019 1 次提交
  15. 16 5月, 2019 1 次提交
  16. 10 5月, 2019 1 次提交
  17. 10 4月, 2019 1 次提交
  18. 26 2月, 2019 1 次提交
  19. 15 2月, 2019 1 次提交
  20. 14 2月, 2019 1 次提交
  21. 01 2月, 2019 1 次提交
  22. 26 1月, 2019 1 次提交
  23. 25 1月, 2019 1 次提交
  24. 15 12月, 2018 2 次提交
  25. 11 12月, 2018 1 次提交
  26. 05 12月, 2018 4 次提交
  27. 09 11月, 2018 1 次提交
  28. 06 11月, 2018 1 次提交
  29. 01 11月, 2018 1 次提交
  30. 26 10月, 2018 1 次提交
  31. 23 10月, 2018 1 次提交
  32. 03 10月, 2018 1 次提交
  33. 02 10月, 2018 1 次提交
  34. 22 9月, 2018 1 次提交
  35. 21 9月, 2018 1 次提交
  36. 20 9月, 2018 1 次提交
    • M
      Add support to save current tools options into an .editorconfig file · 588f1798
      Manish Vasani 提交于
      This ports https://github.com/dotnet/roslyn/pull/28472, that went into the `editorconfig-ide` feature branch, into `dev16.0.x` branch with following additional refactorings/enhancements:
      
      1. Generated .editorconfig file has all localized string as comments.
      2. No hardcoding of individual options in the editorconfig file generator. Instead, each `EditorConfigStorageLocation` now requires to provide a delegate to convert a given option value into the .editorconfig string representation (basically complimentary of the parsing delegate that was already required).
      3. Introduce concept of `OptionGroup` to enable grouping options in the same feature (such as CodeStyleOptions, CSharpCodeStyleOptions, FormattingOptions, CSharpFormattingOptions, etc.) into sub-features or groups (such as "this. preferences", "expression-level preferences", etc.). This enables the editorconfig generation to group the related options, without explicit knowledge of each option group.
      4. Expose `AllOptions` from each option feature (such as CodeStyleOptions, CSharpCodeStyleOptions, FormattingOptions, CSharpFormattingOptions, etc.), so that the corresponding `IOptionProvider` always stays in sync with implemented options.
      588f1798