1. 27 7月, 2017 1 次提交
  2. 14 7月, 2017 1 次提交
  3. 07 7月, 2017 1 次提交
  4. 28 6月, 2017 1 次提交
  5. 23 6月, 2017 1 次提交
  6. 20 6月, 2017 1 次提交
  7. 17 6月, 2017 2 次提交
  8. 09 6月, 2017 1 次提交
  9. 06 6月, 2017 1 次提交
  10. 02 6月, 2017 1 次提交
  11. 01 6月, 2017 1 次提交
  12. 28 5月, 2017 1 次提交
  13. 25 5月, 2017 2 次提交
  14. 24 5月, 2017 1 次提交
  15. 20 5月, 2017 1 次提交
    • N
      Fix crash in is operator used with tuples (#19413) · b0573484
      Neal Gafter 提交于
      * Fixes crash in `is` operator used with tuples
      Fixes #19310
      
      * Matching an expression of type `byte?` with a pattern of type `int` should not be allowed
      * Add documentation for the breaking change matching `int?` against the pattern `long x`
      Fixes #19151
      
      * Unify subsumption implementations
      Fixes #19273
      
      * Greatly improved code gen for value type pattern match
      Fixes #16129
      Fixes #18944
      Fixes #14252
      
      * Add test confirming that #19122 is fixed.
      Fixes #19122
      b0573484
  16. 16 5月, 2017 1 次提交
    • J
      Meet the intention of CONTRIBUTING.md · 8df2faf8
      Jared Parsons 提交于
      The intent of CONTRIBUTING.md is to provide guidelines for contributing to a
      repository.  Ours was a mix of guidelines, best practices and developer
      workflow.  The other aspects are already covered in our other contributing
      documents.
      
      Changing CONTRIBUTING.md to be guideline focused.
      8df2faf8
  17. 15 5月, 2017 1 次提交
  18. 12 5月, 2017 1 次提交
  19. 10 5月, 2017 1 次提交
  20. 09 5月, 2017 1 次提交
  21. 04 5月, 2017 1 次提交
    • C
      Fix example rulset XML (#18567) · 922e7df0
      Charlie Powell 提交于
      The example ruleset provided contains some syntax errors, so copy/pasting wholesale somewhere can result in build errors when including it.
      
      There was also a minor typo I found later in the file while reading through.
      922e7df0
  22. 03 5月, 2017 1 次提交
  23. 01 5月, 2017 8 次提交
  24. 29 4月, 2017 2 次提交
  25. 28 4月, 2017 1 次提交
  26. 27 4月, 2017 2 次提交
  27. 20 4月, 2017 2 次提交
  28. 19 4月, 2017 1 次提交
    • J
      Introduce Exec-Command · 87982abc
      Jared Parsons 提交于
      There is no good method today for executing windows commands with
      dynamically built argument lists in Powershell.  This change attempts
      to address that by introducing Exec-Command which uses the .NET
      Process API directly.  This makes it straight forward to build windows
      commands that rely on windows style parsing and output
      87982abc