-
-
Notifications
You must be signed in to change notification settings - Fork 504
Port to .NET Standard #255
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
Conversation
// | ||
// You can specify all the values or you can default the Revision and Build Numbers | ||
// by using the '*' as shown below: | ||
[assembly: AssemblyVersion("4.1.1.0")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure if you meant to check this in since it's always updated during testing. :)
[InlineData("F", "ko-KR", "2017년 1월 13일 금요일 오전 5:32:06")] | ||
[InlineData("g", "ko-KR", "2017-01-13 오전 5:32")] | ||
[InlineData("G", "ko-KR", "2017-01-13 오전 5:32:06")] | ||
// [InlineData("f", "ko-KR", "2017년 1월 13일 금요일 오전 5:32")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to look into these failures because the tests work on Windows but not Linux. From what I could tell, Mono is having troubles trying to fetch the AM/PM designator for ko-KR (because it is always null).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left a comment to @justinyoo , who contributed this code. Maybe he knows more about this problem.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. 👍 Thanks a lot for putting this together! |
…TSTANDARD1_3 as a friend assembly
…hers run their associated builds.
…DotNetStandard configuration
…ferences between platforms
To ensure consistency between the 'Run-Unit-Tests' and 'Test-Release-Configurations' targets.
This contains all the changes proposed and discussed in #244.
What's included:
Release-DotNetStandard-Unsigned
andRelease-DotNetStandard-Signed
that produce assemblies targetingnetstandard1.3
.netstandard1.3
assemblies to the Nuget packages. This means that using YamlDotNet on .NET core should no longer be a problem.aaubry/yamldotnet
) that contains all the dependencies needed to build YamlDotNet on Linux. This was necessary to overcome some difficulties with mono, but it is also useful for anyone wanting to build the library without having to install anything (besides Docker).What's still missing: