1. 20 4月, 2016 1 次提交
  2. 03 2月, 2016 2 次提交
  3. 22 1月, 2016 1 次提交
  4. 16 10月, 2015 1 次提交
  5. 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
  6. 19 9月, 2015 1 次提交
  7. 03 9月, 2015 1 次提交
  8. 15 7月, 2015 1 次提交
  9. 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
  10. 05 6月, 2015 1 次提交
  11. 17 5月, 2015 1 次提交
  12. 23 4月, 2015 1 次提交
    • A
      Add support for "dynamic" in the expression compiler · f2cac222
      Andrew Casey 提交于
      This is the second of a sequence of changes.  (The first was 3dd1f2bf.)  In
      this change we start returning custom type info (effectively just the
      flags of DynamicAttribute packed into a byte array) from calls to the
      expression compiler so that they can be consumed by the result provider.
      
      TODO: The API for locals is still in flux and we don't presently have a
      place to return the custom type info.
      
      TODO: This change does not associate custom type info with locals declared
      in the Immediate window.
      f2cac222
  13. 18 4月, 2015 1 次提交
  14. 17 4月, 2015 1 次提交
  15. 16 4月, 2015 2 次提交
  16. 27 3月, 2015 2 次提交
  17. 24 3月, 2015 1 次提交
  18. 21 3月, 2015 1 次提交
    • A
      Introduce a hoisted local scope abstraction · 8fd67124
      Andrew Casey 提交于
      Since hoisted locals are fields, they are in scope throughout the entire
      method body.  However, from the user's perspective, they are still locals,
      so we attempt to retain their original scopes during debugging.
      Unfortunately, C# and VB use different mechanisms for doing so.  In order
      to make the code more consistent, and to simplify consumption of the new
      PDB format (which is more similar to C#), we introduce an abstract type
      InScopeHoistedLocals that represents the set of in-scope hoisted locals in
      a consistent way in both languages (and both PDB formats).
      8fd67124
  19. 20 3月, 2015 1 次提交
    • A
      Make the ExpressionCompiler assemblies portable · 38815b62
      Andrew Casey 提交于
      1. Compile them against Profile7.
         a. Swap out a few APIs (e.g. using GetTypeInfo for reflection).
         b. Introduce an abstraction layer so that we don't have to instantiate
         DkmDataItem (caused a VerificationException).
         c. Include WindowsProxy.winmd as an EmbeddedResource directly, rather
         than through a resx file.
      2. Swap the output locations of the ResultProvider projects: Portable goes
      to the main output directory and NetFX20 goes to a subdirectory (NetFX20).
      3. Include the Portable ResultProvider assemblies in the EE vsix, rather
      than the NetFX20 ones.
      38815b62
  20. 14 3月, 2015 2 次提交
  21. 07 3月, 2015 2 次提交
  22. 23 2月, 2015 1 次提交
    • A
      Introduce an abstraction layer over PDB imports · 35f462c8
      Andrew Casey 提交于
      In the dev12 PDB format, usings and imports were encoded as strings in
      PDB files.  The strings were structured, but required a certain amount of
      guesswork (for example, you might not know whether you were importing a
      type or a namespace until after binding).  In the new PDB format, usings
      and imports are represented as structured blobs and tokens are used
      wherever possible.
      
      This change introduces two new class hierarchies, ImportRecord and
      ExternAliasRecord, that the expression compiler can pass around instead
      of raw strings.  Unfortunately, there is still switching logic in two
      places - both when these types are instantiated and when they are
      consumed.  The instantiation switch is very simple - we just check for
      the appropriate version of ISymUnmanagedReaderX.  The consumption logic
      is more complex, because the new and old representations differ
      substantially.
      
      TODO: Presently, there is very little code for consuming the new PDB
      format, since the APIs are not yet available.
      35f462c8
  23. 21 2月, 2015 1 次提交
    • A
      Introduce an abstraction layer over PDB imports · c2ba34e8
      Andrew Casey 提交于
      In the dev12 PDB format, usings and imports were encoded as strings in
      PDB files.  The strings were structured, but required a certain amount of
      guesswork (for example, you might not know whether you were importing a
      type or a namespace until after binding).  In the new PDB format, usings
      and imports are represented as structured blobs and tokens are used
      wherever possible.
      
      This change introduces two new class hierarchies, ImportRecord and
      ExternAliasRecord, that the expression compiler can pass around instead
      of raw strings.  Unfortunately, there is still switching logic in two
      places - both when these types are instantiated and when they are
      consumed.  The instantiation switch is very simple - we just check for
      the appropriate version of ISymUnmanagedReaderX.  The consumption logic
      is more complex, because the new and old representations differ
      substantially.
      
      TODO: Presently, there is very little code for consuming the new PDB
      format, since the APIs are not yet available.
      c2ba34e8
  24. 06 2月, 2015 1 次提交