-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Commits on Jan 12, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 5f30bad - Browse repository at this point
Copy the full SHA 5f30badView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9fcd08e - Browse repository at this point
Copy the full SHA 9fcd08eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 660fc96 - Browse repository at this point
Copy the full SHA 660fc96View commit details -
AVRO-2112: Ignore C# tests that use System.CodeDom compilation when t…
…argeting .NET Core See https://github.com/dotnet/corefx/issues/12180
Configuration menu - View commit details
-
Copy full SHA for 056a212 - Browse repository at this point
Copy the full SHA 056a212View commit details -
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>().
Configuration menu - View commit details
-
Copy full SHA for 47785a2 - Browse repository at this point
Copy the full SHA 47785a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e7d672 - Browse repository at this point
Copy the full SHA 5e7d672View commit details -
Configuration menu - View commit details
-
Copy full SHA for 83e3f1f - Browse repository at this point
Copy the full SHA 83e3f1fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1cfdc07 - Browse repository at this point
Copy the full SHA 1cfdc07View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89b27af - Browse repository at this point
Copy the full SHA 89b27afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f5306e - Browse repository at this point
Copy the full SHA 4f5306eView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 402457c - Browse repository at this point
Copy the full SHA 402457cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1396f30 - Browse repository at this point
Copy the full SHA 1396f30View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b0a036 - Browse repository at this point
Copy the full SHA 5b0a036View commit details -
Configuration menu - View commit details
-
Copy full SHA for c9bb69e - Browse repository at this point
Copy the full SHA c9bb69eView commit details -
Configuration menu - View commit details
-
Copy full SHA for f035c4c - Browse repository at this point
Copy the full SHA f035c4cView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.