diff --git a/source/ProjectToTestGithub/ProjectToTestGithub/ClassForTestBranchOnly.cs b/source/ProjectToTestGithub/ProjectToTestGithub/ClassForTestBranchOnly.cs new file mode 100644 index 0000000..03d4820 --- /dev/null +++ b/source/ProjectToTestGithub/ProjectToTestGithub/ClassForTestBranchOnly.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace ProjectToTestGithub +{ + public class ClassForTestBranchOnly + { + public ClassForTestBranchOnly() + { + checkThatSomethingHappens(true); + } + + + private void checkThatSomethingHappens(bool input) + { + var a = 0, b = 5; + string result = ""; + for (a = b; b < 50; b++) + { + while (a < b) + { + result += a; + } + } + Console.WriteLine(result); + } + + + } +} diff --git a/source/ProjectToTestGithub/ProjectToTestGithub/UserControl1.cs b/source/ProjectToTestGithub/ProjectToTestGithub/UserControl1.cs index 3a692f9..cbdc237 100644 --- a/source/ProjectToTestGithub/ProjectToTestGithub/UserControl1.cs +++ b/source/ProjectToTestGithub/ProjectToTestGithub/UserControl1.cs @@ -18,7 +18,7 @@ public UserControl1() private void UserControl1_Load(object sender, EventArgs e) { - label1.Text = "Loaded."; + label1.Text = "Fully loaded."; } } } diff --git a/source/ProjectToTestGithub/README2.txt b/source/ProjectToTestGithub/README2.txt new file mode 100644 index 0000000..8318c86 --- /dev/null +++ b/source/ProjectToTestGithub/README2.txt @@ -0,0 +1 @@ +Test \ No newline at end of file