diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index d742a6d..e5313db 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -17,6 +17,12 @@ ```c# public void Main() { - // Where possible, post full code to reproduce your issue. + // Where possible, post full code to reproduce your issue that adheres to: + // - Fully runnable. I should be able to copy and paste this code into a + // console application and run it without having to edit it much. + // - Declare all your variables (this follows from the previous point) + // - The code should be a minimal code sample to illustrate issue. The code + // samples on the wiki are good examples of the terseness that I want. Don't + // post your full application. } ```