1. 10 3月, 2016 1 次提交
  2. 27 2月, 2016 1 次提交
  3. 26 2月, 2016 1 次提交
  4. 20 2月, 2016 2 次提交
  5. 19 2月, 2016 1 次提交
  6. 18 2月, 2016 2 次提交
  7. 13 2月, 2016 1 次提交
  8. 12 2月, 2016 3 次提交
  9. 11 2月, 2016 2 次提交
  10. 10 2月, 2016 1 次提交
  11. 05 2月, 2016 2 次提交
  12. 04 2月, 2016 2 次提交
  13. 30 1月, 2016 1 次提交
    • A
      Work around EventListener crash · c9ec06e1
      Andrew Casey 提交于
      ...by ensuring that these assemblies take at least 10 seconds to run.
      
      TODO: revert this change.
      
      NOTE: the usual workaround - disabling appdomain creation in xunit -
      doesn't work in this case because of assembly loading issues.  See #7976
      for details.
      c9ec06e1
  14. 29 1月, 2016 1 次提交
  15. 28 1月, 2016 2 次提交
  16. 27 1月, 2016 3 次提交
    • A
      Re-implement d9bc2bb3 · 588a877b
      Andrew Casey 提交于
      Clobbered by rebase.
      588a877b
    • A
      Format exceptions in host · 4627ff36
      Andrew Casey 提交于
      4627ff36
    • A
      Expose ObjectFormatter as a public API · 705514c1
      Andrew Casey 提交于
      ...and a host object property on InteractiveScriptGlobals.
      
      This is a first cut and my main goal at this point is forward
      compatibility.  The existing unit tests all pass.
      
      TODO: Make some improvements to the existing behavior.
      TODO: Update the existing test baselines.
      TODO: Introduce new tests.
      
      This branch should be buddy testable - tweak the existing formatter by
      subtyping (e.g.) `CSharpObjectFormatter` and assigning an instance of your
      subtype to the global `ObjectFormatter` property.  It should be consumed
      by subsequent submissions.
      705514c1
  17. 26 1月, 2016 1 次提交
  18. 23 1月, 2016 1 次提交
  19. 22 1月, 2016 1 次提交
  20. 21 1月, 2016 1 次提交
  21. 19 1月, 2016 1 次提交
  22. 16 1月, 2016 1 次提交
    • J
      Fixed app.config casing · 7993c56a
      Jared Parsons 提交于
      Ensured that all uses of app.config in our product / test code base is
      used in the lower case form.  This helps with our Unix efforts where
      mixing the case can be significant.  Updated all of the project
      references to ensure they used the lower case version as well.
      7993c56a
  23. 14 1月, 2016 1 次提交
  24. 11 1月, 2016 1 次提交
  25. 06 1月, 2016 3 次提交
  26. 05 1月, 2016 1 次提交
    • K
      Avoid async deadlock in InteractiveHost... · fadea7df
      Kevin Halverson 提交于
      The scheduler returned by TaskScheduler.FromCurrentSynchronizationContext
      does not allow concurrency (meaning all Tasks within a submission were being
      inlined).  This would nearly always result in a deadlock if you kicked off a
      child Task and attempted to continue within the same submission.
      
      We can instead use the Winforms Dispatcher, which will invoke the parent
      Task on the "UI" thread but allow child Tasks to use the ThreadPool.
      fadea7df
  27. 04 1月, 2016 1 次提交
  28. 22 12月, 2015 1 次提交