Padi

Results 22 comments of Padi

Thank you for your feedback. I think it will be great if you will open a pull request with all of your suggestions in order to improve the library.

Thank you for your kind words. I will try to add this feature to dotnet core project and then I will try to implement it to this project.

Hi, If you are using the latest version (4.0) the following should work: ``` var icf = IdentifiableName.Create(NEW_ISSUE_CUSTOM_FIELD_ID); icf.Values = new List {new CustomFieldValue {Info = "[email protected]"}}; var issue =...

I have no idea, but I'll do my best to find out.

Hi, The only fields that you can update for a version are the following: Name, Status, Sharing, DueDate and Description. For updating version's custom fields you have to run the...

Hi, How do you intend to use the Write/Read xml/json methods?

Please, open a PR with proposed changes

I've reviewed the Pull Requests (PR) and I am considering an alternative approach involving converters (XML and JSON). This would ensure a complete separation of the serialization and deserialization processes...

Hello Stephan, Are you using .NET Framework 4.0?

Hi, Currently, there is no mechanism to assign by name. Only the ID is accepted and you can do it like 👇 ``` issue.AssignedTo = IdentifiableName.Create(Id = user.Id); ```