How you setup a greenfield project - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T10:36:29Zhttp://stackoverflow.com/feeds/question/101099http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/101099/how-you-setup-a-greenfield-project2How you setup a greenfield projectChris Canal2008-09-19T11:00:51Z2008-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#1025571Answer by Ilya Kochetov for How you setup a greenfield projectIlya Kochetov2008-09-19T15:00:56Z2008-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>