1. 11 Mar, 2019 1 commit
    • Sydney Acksman's avatar
      Bump target frameworks of C# programs from netcoreapp1.0 to netcoreapp2.1 (#5838) · 15fab910
      Sydney Acksman authored
      * Bump target frameworks from netcoreapp1.0 to netcoreapp2.2.
      Move global.json up to root of repo, change SDK ver to 2.2.100
      Change .net core sdk in dockerfile for kokoro to ver 2.2.100
      
      * Re-add curl install
      
      * Change all exe target to 2.1
      
      * Fix incorrect versions in global.json and Dockerfile
      
      * Downgrade version to 2.1 to match exe targets
      
      * introduce separate testing Dockerfile for C#
      
      * revert changes to the shared Dockerfile
      
      * use netcoreapp2.1 for C# conformance tests
      
      * use language specific dockerfile for testing C#
      
      * Edit compatibility tests script to use parameters instead of file copies
      
      * install dotnet SDK on windows before running the tests
      
      * update csharp_EXTRA_DIST
      15fab910
  2. 08 Mar, 2019 1 commit
  3. 21 Feb, 2019 1 commit
  4. 13 Nov, 2018 1 commit
    • Jon Skeet's avatar
      Increase C# default recursion limit to 100 (#5339) · 627cc48f
      Jon Skeet authored
      * Increase C# default recursion limit to 100
      
      This matches the Java and C++ defaults.
      
      * Change compatibility tests to use execution-time default recursion limit
      
      This way the same tests should pass against all versions, even
      if the recursion limit changes. (The tests will be testing whether
      different messages work, admittedly - but that's probably fine.)
      627cc48f
  5. 19 Dec, 2017 1 commit
  6. 13 Dec, 2017 1 commit
  7. 04 Jul, 2017 1 commit
  8. 24 May, 2017 1 commit
    • Jon Skeet's avatar
      Convert C# projects to MSBuild (csproj) format · f26e8c2a
      Jon Skeet authored
      This has one important packaging change: the netstandard version now
      depends (implicitly) on netstandard1.6.1 rather than on individual
      packages. This is the preferred style of dependency, and shouldn't
      affect any users - see http://stackoverflow.com/questions/42946951
      for details.
      
      The tests are still NUnit, but NUnit doesn't support "dotnet test"
      yet; the test project is now an executable using NUnitLite. (When
      NUnit supports dotnet test, we can adapt to it.)
      
      Note that the project will now only work in Visual Studio 2017 (and
      Visual Studio Code, and from the command line with the .NET Core
      1.0.0 SDK); Visual Studio 2015 does *not* support this project file
      format.
      f26e8c2a
  9. 10 Feb, 2017 1 commit