Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AVRO-2112: Target .NET Standard/Core in C# #307

Merged
merged 15 commits into from
Jan 12, 2019
Merged

AVRO-2112: Target .NET Standard/Core in C# #307

merged 15 commits into from
Jan 12, 2019

Commits on Jan 12, 2019

  1. Configuration menu
    Copy the full SHA
    5f30bad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9fcd08e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    660fc96 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    056a212 View commit details
    Browse the repository at this point in the history
  5. AVRO-2112: Replace usage of JToken.ToString() in C# projects

    In Newtonsoft.Json v3.5, JToken.ToString() returned the raw JSON
    representation of the token. In later versions of
    Newtonsoft.Json, JToken.ToString() returns a simple string
    representation of the value. See the examples below:
    - v3.5: "\"Hello World\""
    - Later versions: "Hello World"
    
    In this commit, I've updated the project to work with later versions
    of Newtonsoft.Json as well as v3.5. I've replaced some usages of
    JToken.ToString(). When we need the raw JSON representation, we use
    JsonConvert.Serialize(). When we need the string value of a string
    JToken, we use JToken.Value<string>().
    blachniet committed Jan 12, 2019
    Configuration menu
    Copy the full SHA
    47785a2 View commit details
    Browse the repository at this point in the history
  6. AVRO-2112: Update C# README

    blachniet committed Jan 12, 2019
    Configuration menu
    Copy the full SHA
    5e7d672 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    83e3f1f View commit details
    Browse the repository at this point in the history
  8. csharp: Cut support for net35, update Dockerfile and csharp build.sh

    Brian Lachniet authored and blachniet committed Jan 12, 2019
    Configuration menu
    Copy the full SHA
    1cfdc07 View commit details
    Browse the repository at this point in the history
  9. Add mono-complete to Dockerfile for build

    Brian Lachniet authored and blachniet committed Jan 12, 2019
    Configuration menu
    Copy the full SHA
    89b27af View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4f5306e View commit details
    Browse the repository at this point in the history
  11. Revert to only running tests for Avro.test.dll

    This is what we were doing on master. I was trying to run the IPC tests,
    but that has not seemed to work well in our automated builds.
    blachniet committed Jan 12, 2019
    Configuration menu
    Copy the full SHA
    402457c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1396f30 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5b0a036 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c9bb69e View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    f035c4c View commit details
    Browse the repository at this point in the history