1. 15 3月, 2015 1 次提交
  2. 12 3月, 2015 3 次提交
  3. 11 3月, 2015 2 次提交
  4. 10 3月, 2015 2 次提交
  5. 07 3月, 2015 4 次提交
  6. 06 3月, 2015 1 次提交
  7. 05 3月, 2015 1 次提交
  8. 28 2月, 2015 1 次提交
    • B
      Code formatter run · ae1aeb41
      beep boop 提交于
      Been almost a month since the code formatter was run so this change was
      a bit larger than would be expected for a normal (weekly) update.  Diffs
      mostly around:
      
      - Whitespace changes
      - Missing copyright headers
      - Missing visibility modifiers
      ae1aeb41
  9. 26 2月, 2015 1 次提交
    • J
      Remove vspscc files · c99336c1
      Jared Parsons 提交于
      These files are a hold over from when Roslyn was in TFS.  They aren't
      needed anymore now that we are in git.
      
      closes #858
      c99336c1
  10. 25 2月, 2015 1 次提交
  11. 17 2月, 2015 1 次提交
  12. 15 2月, 2015 1 次提交
  13. 14 2月, 2015 1 次提交
    • A
      Reduce VM usage in emit tests · 3fcf7bac
      Andy Gocke 提交于
      This change reduces the VM used and memory allocated in the emit
      tests by moving the WinRT tests to their own DLL and removing
      the extra mscorlib reference.
      
      The cause of most of the allocations in the Emit unit tests was
      serializing the WinRT assemblies across app domains. There were
      three reasons the DLLs needed to be serialized:
      
      1) PeVerify currently requires a separate app domain to be used if
         any of the references of the assembly to be verified have already
         been loaded into the current app domain and have a different MVID.
      
      2) The WinRT tests all use a separate version of mscorlib, so they
         will all reference an assembly with a different MVID than the one
         loaded.
      
      3) Most of the WinRT tests were accidentally pulling two references
         to mscorlib, also always leading to a conflict.
      
      All of these issues should be resolved. The CSharp.Emit unit tests
      now allocated 400 MB less and have > 100 MB smaller peak VM.
      
      Fixes #386.
      3fcf7bac
  14. 13 2月, 2015 2 次提交
  15. 11 2月, 2015 1 次提交
  16. 06 2月, 2015 1 次提交
  17. 04 2月, 2015 1 次提交
  18. 01 2月, 2015 2 次提交
  19. 31 1月, 2015 2 次提交
  20. 28 1月, 2015 1 次提交
  21. 20 1月, 2015 2 次提交
    • J
      Between all of our different processes, xUnit, Jenkins, Test.exe, etc ... our... · 4bab250a
      jaredpar 提交于
      Between all of our different processes, xUnit, Jenkins, Test.exe, etc ... our unit tests run on a variety of xUnit runners.  A number of them are unable to handle the following pattern:
      
           [Fact]
           void M() { ... }
           void M(string arg) { ... }
      
           Essentially a test method which has an overload in the same type.  This is clearly a bug in xUnit and one that is fixed in more recent versions of 2.0.  We are in the process of updating to that version but it will take a bit more time to do so.  In the mean time I wrote a program to find instances of this pattern and changed the code to work around this temporary issue.   (changeset 1400484)
      4bab250a
    • V
      Regression test for Bug 1102883 (changeset 1400149) · 92a66d0a
      vladres 提交于
      92a66d0a
  22. 15 1月, 2015 3 次提交
  23. 14 1月, 2015 3 次提交