MihailsKuzmins

Results 34 comments of MihailsKuzmins

I think this logic should be somewhere in `UploadFileInternal` and `UploadFileInternalAsync`, but these methods are really large with multiple return statements, so it does not seem to be so simple....

well, I have the same issue in Azure Devops ```sh /usr/local/bin/protoc-gen-grpc-web: 1: Not: not found --grpc-web_out: protoc-gen-grpc-web: Plugin failed with status code 127. ##[error]The process '/usr/bin/bash' failed with exit code...

`Directory.Exists(folder)` is pointless before `Directory.CreateDirectory(folder)`. `CreateDirectory` already handles it. My issue was that the code in "MySqlBackup.Net" does not handle it. There is an exception "Directory does not exist" if...

@goblinfactory if you do not mind I could create a PR for it. Like I said it should not take too much time to do it

Hey @goblinfactory (Alan) Thank you for your hard work :pray: Instead of 6.3 I tested it with the latest version which was release a while ago (namely 7.3.). For my...

@sharwell, thanks for pointing out that `AdditionalReferences` is the right place for project references. However, my project uses .net6, so then adding the assembly I get an error about different...

Sorry for my delayed response. Thank you for the information. Hopefully in the future there is a better solution than just parsing the decimal as a string

@jzabroski, thank for the reply. Of course it does, but it makes my code a bit clumsy and unnatural. Do you think that there might be problems with enum handling?

@jzabroski I'm thinking about creating a PR for enum handling. There is one question I would like to ask about a possible implementation. Of course the easiest way is to...

When you mentioned the "pickling method" (serialisation, right?) it gave me an idea to look at `GenericQuoter` which does look like a perfect place to handle the type. But looking...