1. 19 2月, 2020 1 次提交
  2. 14 2月, 2020 1 次提交
  3. 13 2月, 2020 1 次提交
  4. 12 2月, 2020 1 次提交
  5. 31 1月, 2020 6 次提交
    • J
      Clean up remaining test failures · 453cadbc
      Jared Parsons 提交于
      453cadbc
    • J
      Fix MS.VB reference · a3add60f
      Jared Parsons 提交于
      The TPA now considers the output directory as a trusted place for
      loading assemblies. To the point it will prefer certain DLLs in the
      output directory over equal ones that ship with the runtime.
      
      This broke a number of VB tests here because we unconditionally
      referenced the desktop version of Microsoft.VisualBasic. This got copied
      to the output directory, included in the TPA and hence loaded during
      test execution. This breaks tests because they require the .NET Core
      version of Microsoft.VisualBasic.
      
      Conditioned the reference to be desktop only so it's not present on our
      .NET Core builds
      a3add60f
    • J
      Remove RoslynNetCoreTargetFramework · 72b58c94
      Jared Parsons 提交于
      Decided to remove the property based approach to specifying a target
      framework to just specifying `netcoreapp3.1` directly. The reason for
      this is the following:
      
      The advantage of the property is it makes it "easy" to change to a new
      target framework in the future. That benefit is actually pretty minimal.
      A simple find and replace operation is **extremely** effective in our
      code base (it's less key strokes than this message). Hence the benefit
      is minimal.
      
      The downside of the property is that our code doesn't look like customer
      code. Or rather it diverges from the practices that we publish. In
      general I prefer to keep our code as standard as possible unless there
      is a good reason to deviate. There just doesn't seem to be one here.
      72b58c94
    • J
      Test Work · 5ecae05e
      Jared Parsons 提交于
      5ecae05e
    • J
    • J
      Move to target netcoreapp3.1 · 98da1837
      Jared Parsons 提交于
      Change Roslyn to target netcoreapp3.1 when building .NET Core assets.
      
      Previously the code targetted a mix of netcoreapp2.1 and netcoreapp3.0.
      The mix is due to default interfaces only being supported on
      netcoreapp3.0 and hence our testing needed to use that. Yet at the same
      time we were required to ship the compiler in SDKS that targetted
      netcoreapp2.1. Now we can universally target netcoreapp3.1.
      98da1837
  6. 29 1月, 2020 2 次提交
  7. 25 1月, 2020 1 次提交
  8. 23 1月, 2020 1 次提交
  9. 16 1月, 2020 1 次提交
  10. 14 1月, 2020 1 次提交
  11. 10 1月, 2020 4 次提交
  12. 01 1月, 2020 1 次提交
  13. 13 12月, 2019 1 次提交
  14. 31 10月, 2019 1 次提交
  15. 30 10月, 2019 1 次提交
    • A
      Move optimization around use of Nullable type in Boolean Expressions into... · 3ef28604
      AlekseyTs 提交于
      Move optimization around use of Nullable type in Boolean Expressions into LocalRewriter and eliminate invalid optimization. (#38802)
      
      * Move optimization around use of Nullable type in Boolean Expressions into LocalRewriter and eliminate invalid optimization.
      
      Fixes #38305.
      
      The goal of optimization is to eliminate the need to deal with instances of Nullable(Of Boolean) type as early as possible, and, as a result, simplify evaluation of built-in OrElse/AndAlso operators by eliminating the need to use three-valued Boolean logic. The optimization is possible because when an entire Boolean Expression is evaluated to Null, that has the same effect as if result of evaluation was False. However, we do want to preserve the original order of evaluation, according to language rules.
      
      * Fix an old bug masked by #38305.
      
      * Fix an old bug masked by #38305.
      
      * More fixes fo old bugs masked by #38305, plus optimizations that wouldn't be performed by compiler.
      
      * PR feedback
      3ef28604
  16. 15 10月, 2019 1 次提交
  17. 08 10月, 2019 2 次提交
  18. 04 10月, 2019 1 次提交
  19. 01 10月, 2019 1 次提交
  20. 27 9月, 2019 1 次提交
  21. 26 9月, 2019 1 次提交
  22. 24 9月, 2019 1 次提交
  23. 19 9月, 2019 1 次提交
  24. 18 9月, 2019 1 次提交
  25. 10 9月, 2019 1 次提交
  26. 07 9月, 2019 2 次提交
  27. 06 9月, 2019 1 次提交
  28. 04 9月, 2019 1 次提交
    • T
      Disable failing tests · d1be9959
      Tom Meschter 提交于
      Related to #38454.
      
      These tests fail in the CI runs for #38417 which adds translations for various resources. The problem is the test compares localized text with the original English text; this worked fine until now because the localized text wasn't yet translated, and so just happened to be the same as the English.
      
      The point of this change is to unblock #38417.
      d1be9959
  29. 31 8月, 2019 1 次提交