1. 14 2月, 2020 1 次提交
  2. 12 2月, 2020 3 次提交
  3. 11 2月, 2020 1 次提交
  4. 08 2月, 2020 1 次提交
  5. 07 2月, 2020 1 次提交
    • J
      Use NETCOREAPP · 2f302873
      Jared Parsons 提交于
      This changes all of our uses of `NETCOREAPP3_1` to `NETCOREAPP`. There
      is no value in distinguishing the exact .NET Core version we use in our
      source tree as we only target one version. Also going forward it's not
      expected that our .NET Core specific code will be version specific. If
      that arises we can go back to version specific defines for those cases.
      
      This also removes the last references to `netcoreapp1.1`,
      `netcoreapp2.1` and `netcoreapp3.0` from our code.
      2f302873
  6. 06 2月, 2020 5 次提交
  7. 05 2月, 2020 7 次提交
  8. 04 2月, 2020 4 次提交
  9. 02 2月, 2020 1 次提交
  10. 01 2月, 2020 1 次提交
  11. 31 1月, 2020 8 次提交
    • S
      Make ValueText return empty instead of null · 10f524e8
      Sam Harwell 提交于
      Closes #41304
      10f524e8
    • S
      Remove unnecessary using directive · 852d37e7
      Sam Harwell 提交于
      852d37e7
    • J
      Fixed build correctness · 5184394d
      Jared Parsons 提交于
      5184394d
    • J
      PR feedback · 5b6d3ee9
      Jared Parsons 提交于
      5b6d3ee9
    • J
      Clean up remaining test failures · 453cadbc
      Jared Parsons 提交于
      453cadbc
    • 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
      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
  12. 29 1月, 2020 5 次提交
  13. 25 1月, 2020 1 次提交
  14. 24 1月, 2020 1 次提交