1. 17 5月, 2015 1 次提交
  2. 09 5月, 2015 1 次提交
  3. 03 5月, 2015 1 次提交
  4. 21 3月, 2015 1 次提交
  5. 25 2月, 2015 1 次提交
  6. 20 2月, 2015 2 次提交
  7. 15 2月, 2015 1 次提交
  8. 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
  9. 15 1月, 2015 1 次提交
  10. 14 1月, 2015 1 次提交
  11. 07 1月, 2015 4 次提交
  12. 24 12月, 2014 1 次提交
    • A
      Anonymous Type.ToString() implementation should use overload of String.Format... · c631286d
      AlekseyTs 提交于
      Anonymous Type.ToString() implementation should use overload of String.Format that takes IFormatProvider. Also, C# implementation should explicitly call Object.ToString on each property value before passing it to the Format function, this ensures compatibility with code generated by native compiler.
      ***NO_CI***
       (changeset 1386476)
      c631286d
  13. 04 12月, 2014 1 次提交
  14. 11 11月, 2014 1 次提交
    • N
      Remove LanguageVersion.Experimental · 512bc402
      nmgafter 提交于
      The principal change here is to remove the language version "experimenal." However, there are a number of places in the code where we either set the language version to experimental or check whether experimental features are enabled. Those are largely vestigal at the moment as we have no experimental features. However as soon as we add experimental features that code will once again be useful. Rather than deleting that code now, I wanted to leave it in and make it easy to find and update as features are added. So I'm adding a stubbed implementation of the API proposed for future use for enabling experimental features.
      
      After Dev14 our plan is to have experimental features enabled one-by-one rather than all under a single umbrella "experimental" flag. Since language features affect the parser, this is part of the parse options. This changeset adds a stubbed version of the proposed APIs:
      
      public class ParseOptions
      {
          /// <summary>
          /// Enable some experimental language features for testing.
          /// </summary>
          public ParseOptions WithFeatures(IEnumerable<KeyValuePair<string, string>> features);
      
          /// <summary>
          /// Returns the experimental features.
          /// </summary>
          public abstract IReadOnlyDictionary<string, string> Features
          {
              get;
          }
      } (changeset 1369555)
      512bc402
  15. 10 10月, 2014 1 次提交
    • H
      CR.Feedback. · 0f0e1342
      heejaechang 提交于
      changed to use formatedsymbol rather than putting specific error case in ConvertSymbolToString (changeset 1351207)
      0f0e1342
  16. 02 10月, 2014 1 次提交
  17. 10 9月, 2014 1 次提交
    • V
      * Fix 879811: Do not suppress ambiguity errors if they are caused be the same... · c9a10638
      vladres 提交于
      * Fix 879811: Do not suppress ambiguity errors if they are caused be the same nested type imported through several using static directives with different type arguments.
      * Fix typos in comments, corrupted characters due to incorrect source encoding, remove unnecessary casts, namespace qualifiers, type arguments and using directives. (changeset 1326357)
      c9a10638
  18. 25 7月, 2014 1 次提交
  19. 22 7月, 2014 1 次提交
  20. 12 7月, 2014 1 次提交
    • P
      Fix typos. · 8d3f539d
      Pharring 提交于
           lamda
           compilaton
           compatable/incompatability
           warings
           retrun
           converion
           delagate
           buid
           namepsace (changeset 1290811)
      8d3f539d
  21. 02 7月, 2014 1 次提交
    • T
      This change is a modification of Neal's changeset. It includes all the changes... · 4a80f87f
      TomasMatousek 提交于
      This change is a modification of Neal's changeset. It includes all the changes need for moving expression-bodied properties and methods to C# 6, but doesn't do so yet. We need to make sure that the EnC and debugging experience is at least reasonable (non-crashing) first. I'll follow up with a change that updates the EnC logic and flips the switch for these features. (changeset 1289212)
      4a80f87f
  22. 20 6月, 2014 1 次提交
    • 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
  23. 27 3月, 2014 1 次提交
  24. 19 3月, 2014 1 次提交