I've a repository on GitHub called FruityRepo. Inside FruityRepo I have two Visual Studio solutions, one called Fruit.Apple and another called Fruit.Pear.
I'm configuring TeamCity to build both solutions, so I've created a couple of projects inside TeamCity. I only want TeamCity to pull down the Pear code when Pear changes, and likewise for Apple.
However I'm unsure what the format of the checkout rule needed to make this work. I think I need two rules, something like;
-:.
+:Fruit.Pear
This does not work though, TeamCity returns the error Cannot start build runner.
How do I configure a checkout rule in TeamCity against GitHub?