errorcontrolsystem

How to automate add my c# application issues to Github programmatically

喜你入骨 提交于 2020-01-22 09:37:26
问题 How can I programmatically add issues on my Github repository using C#? I have an Error Handler library (ErrorControlSystem) to attach that in a win application to raise that exceptions on a SQL table. Now, I want to store ErrorControlSystem self exceptions without the target app exceptions on self Github repository issues. How to can I do it? 回答1: You can use the GitHub API for that. Create a webhook and add an issue the following way: POST /repos/:owner/:repo/issues Example from https:/

How to automate add my c# application issues to Github programmatically

孤街醉人 提交于 2020-01-22 09:37:05
问题 How can I programmatically add issues on my Github repository using C#? I have an Error Handler library (ErrorControlSystem) to attach that in a win application to raise that exceptions on a SQL table. Now, I want to store ErrorControlSystem self exceptions without the target app exceptions on self Github repository issues. How to can I do it? 回答1: You can use the GitHub API for that. Create a webhook and add an issue the following way: POST /repos/:owner/:repo/issues Example from https:/