How you setup a greenfield project - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T10:36:29Z http://stackoverflow.com/feeds/question/101099 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/101099/how-you-setup-a-greenfield-project 2 How you setup a greenfield project Chris Canal 2008-09-19T11:00:51Z 2008-09-22T08:20:05Z <p>I'm setting yup a Greenfield (yeeea!) web application just now was wondering how other people first setup their project with regards to automated/CI build?</p> <p>I generally follow this:</p> <ol> <li>Create SVN Repository with basic layout (trunk, braches, lib, etc.)</li> <li>Create basic solution structure (core, ui, tests)</li> <li>Create a basic test that fails</li> <li>Copy NAnt scripts, update and tweak, make sure the failing test breaks the build locally</li> <li>Commit</li> <li>Setup default debug build on CI server (TeamCity) making sure the build fails</li> <li>Fix text</li> <li>Commit 9 Make sure build passes on CI</li> <li>Done....</li> </ol> http://stackoverflow.com/questions/101099/how-you-setup-a-greenfield-project/102557#102557 1 Answer by Ilya Kochetov for How you setup a greenfield project Ilya Kochetov 2008-09-19T15:00:56Z 2008-09-22T08:20:05Z <p>A repost from the question text:</p> <ol> <li>Create SVN Repository with basic layout (trunk, braches, lib, etc.)</li> <li>Create basic solution structure (core, ui, tests)</li> <li>Create a basic test that fails</li> <li>Copy NAnt scripts, update and tweak, make sure the failing test breaks the build locally</li> <li>Commit</li> <li>Setup default debug build on CI server (TeamCity) making sure the build fails</li> <li>Fix test</li> <li>Commit</li> <li>Make sure build passes on CI</li> <li>Done....</li> </ol>