1. 10 10月, 2015 1 次提交
  2. 22 9月, 2015 1 次提交
    • T
      This cleans up the Roslyn Code Base. · deee04e4
      Tanner Gooding 提交于
      * This updates all references to nuget.exe to use the copy in the root.
      * This deletes all NuGet.config and NuGet.exe files that are not in the root.
      * This removes all references to NuGet.targets (which is obsolete and no longer exists)
      deee04e4
  3. 03 9月, 2015 1 次提交
  4. 18 8月, 2015 1 次提交
  5. 12 8月, 2015 2 次提交
  6. 15 7月, 2015 2 次提交
  7. 09 7月, 2015 1 次提交
    • A
      Unify the Closed/Open targets files · ebd5cd6e
      Andy Gocke 提交于
      The targets files were previously split into an open version in
      Microsoft.CodeAnalysis.Toolset.Open and a closed version in build/. This
      unifies the four targets into two new targets, VSL.Settings.targets and
      VSL.Imports.targets, and moves all the targets from ..Toolset.Open into
      the build/ folder.
      ebd5cd6e
  8. 10 5月, 2015 1 次提交
    • J
      Remove references to Desktop projects · 817fe8c5
      Jared Parsons 提交于
      This removes the majority of references to the deprecated Desktop
      assemblies.  The only remaining ones are in the VSIX projects.  They
      must remain until we actually delete the assemblies.
      817fe8c5
  9. 18 4月, 2015 2 次提交
  10. 17 4月, 2015 1 次提交
  11. 27 3月, 2015 1 次提交
  12. 07 3月, 2015 2 次提交
  13. 18 2月, 2015 2 次提交
    • J
      Fix VB defines · 7a93c369
      Jared Parsons 提交于
      Preprocessor symbols in VB need to be combined with a comma, not a
      semicolon.
      7a93c369
    • J
      Fix use of DefineConstants · 5e896eb9
      Jared Parsons 提交于
      The primary use of DefineConstants should be to append constant values,
      not replace them.  Any time a replacement operation is used it prevents
      us from establishing defines in our targets and pushing them down to all
      affected projects.
      5e896eb9
  14. 01 2月, 2015 1 次提交
  15. 15 1月, 2015 1 次提交
  16. 14 1月, 2015 3 次提交
  17. 24 12月, 2014 2 次提交
    • A
      Simplify updating LKG compiler & analyzers by introducing "global" NuGet references · 9ee65cac
      angocke 提交于
      This changeset introduces the concept of a "global" nuget package. The references to the NuGet packages are inserted into the Open VSL.Settings.targets file, which is imported into every project in Roslyn. This ensures that every project automatically gets these "global" packages. (changeset 1386548)
      9ee65cac
    • T
      Updates System.Collections.Immutable and System.Metadata.Reader to versions... · e8be04b7
      TomasMatousek 提交于
      Updates System.Collections.Immutable and System.Metadata.Reader to versions 1.1.33-beta and 1.0.18-beta, respectively.
           Updates VSMEF to the latest build from VSPRO_1.
      
           A few code fixes:
           - ImmutableArrayInterop is gone
             - in product we used in a couple of places where we now just create a copy of the byte[] (MetadataWriter)
             - test infrastructure uses a workaround with explicitly laid out union to avoid copies of large metadata blobs
           - EditorTestApp class was incorrectly importing MEF components resulting in a cycle. The new VSMEF reports such errors. (changeset 1385613)
      e8be04b7
  18. 11 11月, 2014 1 次提交
  19. 17 10月, 2014 1 次提交
  20. 16 10月, 2014 1 次提交
  21. 11 10月, 2014 1 次提交
    • T
      Remove duplicate package references. · 8fef5b5d
      tmeschter 提交于
      When our projects were last updated to a newer version of Microsoft.Net.ToolsetCompilers, NuGet didn't replace the old version--it just put the new version next to it. Every project ended up referencing both versions, and which set of compiler binaries "won" depended on the order they appeared in the project file. So different projects built with different compilers.
      
      This change strips out all references to the old version. (changeset 1352054)
      8fef5b5d
  22. 10 10月, 2014 1 次提交
  23. 04 10月, 2014 1 次提交
    • T
      EnC: Local variable mapping rewrite. · 916b9efa
      TomasMatousek 提交于
      Current approach and issues
      
           When emitting method body of a method updated during EnC the compiler needs to assign local variables the same slots they had before the edit, so that state stored in those locals gets preserved.
           To implement this slot mapping we used to encode information into synthesized variable names that identified the syntax node that produced the variable and ultimately allowed us to calculate the slot mapping.
           For user variables we identified the slot by name. In both cases we relied on an assumption that the compiler assigns slots in syntax order. This assumption is false in some cases. We could make it true but the requirement would be fragile and hard to enforce when new features are implemented in the compiler since the entire lowering pipeline would need to preserve the assumption.
      
           New approach
           In the new approach we calculate a "syntax offset" for each user-defined and long-lived synthesized variable. Every such variable symbol has to be associated with a syntax node (its declarator). In usual cases this is the textual distance of the declarator from the start of the method body. It gets a bit complicated when the containing method body is not contiguous (constructors). If the variable is in the body of the constructor the definition of syntax offset is the same. If the variable is defined in a constructor  initializer or in a member initializer (this is only possible when declaration expressions or closures in primary constructors are involved) then the distance is a negative sum of the widths of all the initializers that succeed the declarator of the variable in the emitted constructor body plus the relative offset of the declarator from the start of the containing initializer.
      
           If a single node is a declarator for multiple variables of the same synthesized kind (it can only happen for synthesized variables) we calculate additional number "ordinal" for such variable. We assign the ordinals to the synthesized variables with the same kind and syntax offset in the order as they appear in the lowered bound tree. It is important that a valid EnC edit can't change the ordinal of a synthesized variable. If it could it would need to be assigned a different kind or associated with a different declarator node.
      
           To support EnC of async method we will assign another number "subordinal" to certain synthesized locals (produced by spilling by-ref variables) to simplify the mapping. Assigning of such number is not yet implemented in this change.
      
           Together (syntax offset, ordinal, subordinal) form a LocalDebugId of a variable. Since this id needs to be stored in PDB for both user-defined and long-lived synthesized variables we can’t encode it in the name of the variable (the names of user-defined variables have to be their user specified names). Therefore this change introduces a new custom debug info record that is associated with a method. The record encodes the kind and id for each local slot of the method.
      
           As a consequence we no longer emit names for synthesized long-lived variables (“CS$...”) unless it’s necessary for backward comp with Dev12 EE (only display class local names need to be emitted for this reason). (changeset 1348066)
      916b9efa
  24. 25 9月, 2014 2 次提交
  25. 10 9月, 2014 1 次提交
  26. 15 8月, 2014 1 次提交
    • T
      More options cleanup & fix in EE variable enumerator · 556e5b7b
      TomasMatousek 提交于
      Removes UnoptimizedDll/unoptimizedExe and other /optimize & /debug option combinations from tests.
      Fixes bug in C# EE - we have incorrectly treated end offset of a local scope as inclusive. It's exclusive for C#, inclusive for VB. (changeset 1313100)
      556e5b7b
  27. 26 7月, 2014 1 次提交
  28. 08 7月, 2014 1 次提交
  29. 20 6月, 2014 3 次提交
    • 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
    • K
      Add IVT for VB EE (ResultProvider) and change .targets so we don't "Import... · e68ce06e
      Kevin_H 提交于
      Add IVT for VB EE (ResultProvider) and change .targets so we don't "Import System.Linq" in projects that target .NET 2.0. (changeset 1274168)
      e68ce06e
    • A
      Title: · 82141f2f
      acasey 提交于
           Expression Evaluator Restructuring
      
       Change Description:
      
           Rename assemblies, namespaces, and folders
      
           Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler.dll
           [Shared ResultProvider dll not yet created]
           Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.dll
           Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.dll
           Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.dll
           [VB ResultProvider dll not yet created]
           Roslyn.ExpressionEvaluator.CSharp.ExpressionCompiler.dll
           Roslyn.ExpressionEvaluator.VisualBasic.ExpressionCompiler.dll
           Roslyn.ExpressionEvaluator.CSharp.ResultProvider.dll
           [VB ResultProvider test dll not yet created]
      
      TODO: Address CR feedback separately. (changeset 1272594)
      82141f2f