1. 26 10月, 2015 1 次提交
  2. 17 10月, 2015 1 次提交
  3. 11 10月, 2015 1 次提交
  4. 28 8月, 2015 1 次提交
  5. 20 6月, 2015 1 次提交
  6. 09 6月, 2015 4 次提交
  7. 03 5月, 2015 1 次提交
  8. 17 4月, 2015 1 次提交
  9. 01 2月, 2015 1 次提交
    • B
      Complete the style update to the rest of Open\src directory · 995eb372
      beep boop 提交于
           Background:
      
           As discussed in the dev team all hands all code under the GitHub dotnet foundation is using a single process for contribution, API review, infrastructure and coding style. The idea is to present a unified view to our customer and give them a single story for contributing to any project under the dotnet foundation.
      
           https://github.com/dotnet/corefx/wiki/Contributing#c-coding-style
      
           The coding style transition is automated using a Roslyn based rewrite tool:
      
           https://github.com/dotnet/codeformatter
      
           This will be applied in stages across our developer tree. Right now the focus is on the Open directory as this is what is being presented on github. Code owners will be contacted before the transition happens.
      
           Note: this is a soft style requirement. There are no build errors that come from this change.
       (changeset 1408227)
      995eb372
  10. 15 1月, 2015 1 次提交
  11. 14 1月, 2015 1 次提交
  12. 07 1月, 2015 1 次提交
  13. 04 12月, 2014 1 次提交
    • P
      Fix CS0724 for multiply nested catch and finally blocks. · 1198d391
      pgavlin 提交于
      The original code simply walked the binder chain until one of InCatchBlock or InFinallyBlock was dropped from the binder flags. Unfortunately, this algorithm cannot handle multiply nested catch/finally blocks and would incorrectly issue CS0724 for patterns similar to the code given below:
      
      try
      {
      }
      catch
      {
          try
          {
          }
          finally
          {
              try
              {
              }
              catch
              {
                  throw;
              }
          }
      }
      
      The new code binder flag that is set for finally clauses nested inside try clauses and reset at catch clauses to detect this sort of nesting.
      ***NO_CI***
       (changeset 1378936)
      1198d391
  14. 02 10月, 2014 2 次提交
  15. 20 6月, 2014 2 次提交
    • T
      Splits Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.CSharp and... · fc3b332f
      TomasMatousek 提交于
      Splits Microsoft.CodeAnalysis, Microsoft.CodeAnalysis.CSharp and Microsoft.CodeAnalysis.VisualBasic into portable and desktop assemblies.
      
      Existing Core\Source, CSharp\Source and VisualBasic\Source directories are renamed to Core\Portable, CSharp\Portable and VisualBasic\Portable.
      New sibling Desktop folders are added and non-portable source is moved there.
      "System.Runtime" references has to be removed in order for the portable project system magic to automatically add facade references.
       (changeset 1281686)
      fc3b332f
    • A
      cac1945c
  16. 23 5月, 2014 1 次提交
  17. 05 5月, 2014 1 次提交
  18. 23 3月, 2014 1 次提交
  19. 19 3月, 2014 1 次提交