1. 11 11月, 2016 1 次提交
  2. 02 11月, 2016 1 次提交
  3. 31 10月, 2016 1 次提交
  4. 28 10月, 2016 1 次提交
  5. 26 10月, 2016 1 次提交
  6. 24 10月, 2016 2 次提交
  7. 22 10月, 2016 1 次提交
    • J
      TLDR: artifacts are going to move around in Binaries\Debug and the directory... · b9ba3e9e
      Jared Parsons 提交于
      TLDR: artifacts are going to move around in Binaries\Debug and the directory is going to get a lot bigger.
      
      At a high level build projects can be classified into three categories based on how they write output:
      
      - incorrect: a given output path is written to more than once with different contents
      - less correct: a given output path is written to more than once but always with the same content
      - correct: a given output path is written to exactly once
      
      Today the roslyn build is decidedly “incorrect” as pretty much every file is written directly into Binaries\Debug. This means it ends up writing pretty much every Visual Studio SDK DLL twice: once for Dev14 and once for Dev15. For example at various points in the build Binaries\Debug\Microsoft.VisualStudio.Text.Data.dll may refer to Dev14 and at others it’s Dev15. If this seems like a scary proposition for a build that’s because it is indeed scary and it has real consequences. By now pretty much everyone on the team has hit the build race condition that is dragging down our PRs.
      
      The general fix here is to move build outputs into separate directories. Instead of building to $(Configuration) projects now build into say $(Configuration)\Exes\$(MSBuildProjectFileName). This will have a substantial increase in the size of Binaries. We will be looking into ways to reduce that. In the short term though build stability far outweighs the size increase.
      
      This change takes us most of the way to "correct". There are several places I had to compromise in order to get this initial change in:
      
      - UnitTests still build to a common output folder (one for Dev14, another for Dev15). Pulling unit tests apart is going to take a bit of work.
      - Every project has a <RoslynProjectType> entry. This will go away in the future for most projects. It's temporarily needed so I can fix roslyn-internal in parallel without taking down the build.
      - VSL.Imports.targets is messy. Unavoidable for now due to the above. It will get cleaner as I iterate on this.
      
      None of these are relevant to the underlying race condition. Hence it's okay to push them off.
      b9ba3e9e
  8. 24 9月, 2016 1 次提交
  9. 17 8月, 2016 1 次提交
    • J
      Remove ImportGroup · 9f431374
      Jared Parsons 提交于
      The ImportGroup element is just noise.  It was also used very inconsistently in the repo and often within the same project file.  Just remove it.
      9f431374
  10. 27 7月, 2016 2 次提交
  11. 14 7月, 2016 3 次提交
  12. 21 4月, 2016 1 次提交
  13. 20 4月, 2016 1 次提交
  14. 03 2月, 2016 2 次提交
  15. 22 1月, 2016 1 次提交
  16. 16 10月, 2015 1 次提交
  17. 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
  18. 19 9月, 2015 1 次提交
  19. 03 9月, 2015 1 次提交
  20. 15 7月, 2015 1 次提交
  21. 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
  22. 05 6月, 2015 1 次提交
  23. 17 5月, 2015 1 次提交
  24. 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
  25. 18 4月, 2015 1 次提交
  26. 17 4月, 2015 1 次提交
  27. 16 4月, 2015 2 次提交
  28. 27 3月, 2015 2 次提交
  29. 24 3月, 2015 1 次提交
  30. 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
  31. 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
  32. 14 3月, 2015 2 次提交