JetBrains / YouTrackSharp

.NET Standard 2.0 Library to access YouTrack API.
https://www.jetbrains.com/youtrack
Apache License 2.0
134 stars 105 forks source link

Treat field names with case-sensitivity #99

Closed Elwetana closed 3 years ago

Elwetana commented 3 years ago

Following the issue https://github.com/JetBrains/YouTrackSharp/issues/98, I am submitting this simple change to treat field name in a case-sensitive manner. Thank you

Fixes #98

maartenba commented 3 years ago

Will do some work to add this on top of the 202 branch (so I can ship it as 2020.2.1 later today). Thanks again for diving in!

maartenba commented 3 years ago

@Elwetana FYI, I made this feature "opt-in" to no break existing applications. To use case-sensitive fields, set Issue.UseCaseSensitiveFieldNames = true in your application.

Elwetana commented 3 years ago

Alright, that's fair. Thank you!