User GertGregers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T20:05:14Z http://stackoverflow.com/feeds/user/19889 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/170009/your-scrum-definition-of-done 13 Your Scrum definition of Done GertGregers 2008-10-04T08:52:42Z 2008-10-05T22:31:45Z <p>While Scrum is easy in theory and hard in practice, I wanted to hear your definition of Done; i.e. what are the gates (unit test, code coverage > 80%, code reviews, load tests, perf.test, functional tests, etc.) your product has to go through before you can label the product "Done"</p> http://stackoverflow.com/questions/162366/is-there-any-way-to-create-a-patch-for-an-asp-net-web-application-installer/170016#170016 0 Answer by GertGregers for Is there any way to create a patch for an ASP.Net web application installer? GertGregers 2008-10-04T09:05:27Z 2008-10-04T09:05:27Z <p>Sorry for not helping, I can however tell you how we use WIX to create the installation for our web-site. </p> <p>We have created a WIX template (Plan Old XML), and we then traverse the build output folder using an utility we wrote our-selves to get the list of folders and files that need to go into the resulting WIX file. This process is rolled into the build (MSBuild) for the web-site, so the MSI creation is automatic.</p> http://stackoverflow.com/questions/162366/is-there-any-way-to-create-a-patch-for-an-asp-net-web-application-installer/169320#169320 0 Answer by GertGregers for Is there any way to create a patch for an ASP.Net web application installer? GertGregers 2008-10-03T23:31:50Z 2008-10-03T23:31:50Z <p>The WIX (Windows Installer XML) documentation has a section on Patch Building using a Patch Creation Properties (PCP) authoring file for creating a delta patch file.</p> http://stackoverflow.com/questions/169195/does-scrum-alone-agile/169279#169279 6 Answer by GertGregers for Does SCRUM alone = agile? GertGregers 2008-10-03T23:17:34Z 2008-10-03T23:17:34Z <p>Bad managers will be outed by the transparency that SCRUM promotes. Companies truely embracing SCRUM are definitely worth a look.</p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/128987#128987 42 Answer by GertGregers for What is the one programming skill you have always wanted to master but haven't had time? GertGregers 2008-09-24T18:39:23Z 2008-09-24T18:39:23Z <p>10-finger keyboard typing</p> http://stackoverflow.com/questions/123430/installing-tfs-2008-workgroup-edition-on-windows-server-2003-with-sql-server-2008/123500#123500 1 Answer by GertGregers for Installing TFS 2008 Workgroup Edition on Windows Server 2003 with SQL Server 2008 GertGregers 2008-09-23T20:05:16Z 2008-09-23T20:05:16Z <p>You need the Tfs 2008 Sp1 for support for SQL Server 2008. See this post <a href="http://geekswithblogs.net/etiennetremblay/archive/2008/08/11/sql-2008--tfs-2008-sp1-the-lowdownhellip.aspx" rel="nofollow">http://geekswithblogs.net/etiennetremblay/archive/2008/08/11/sql-2008--tfs-2008-sp1-the-lowdownhellip.aspx</a></p> <p>Hth., /Gert</p> http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server/110572#110572 2 Answer by GertGregers for Find in Files: Search all code in Team Foundation Server GertGregers 2008-09-21T08:57:25Z 2008-09-21T08:57:25Z <p>We have set up a solution for Team Foundation Server Source Control (not SourceSafe as you mention) similar to what Grant suggests; scheduled TF Get, Search Server Express. However the IFilter used for C# files (text) was not giving the results we wanted, so we convert source files to .htm files. We can now add additional meta-data to the files such as:</p> <ul> <li>Author (we define it as the person that last checked in the file)</li> <li>Color coding (on our todo-list)</li> <li>Number of changes indicating potential design problems (on our todo-list)</li> <li>Integrate with the VSTS IDE like Koders SmartSearch feature</li> <li>etc.</li> </ul> <p>We would however prefer a protocolhandler for TFS Source Control, and a dedicated source code IFilter for a much more targeted solution.</p> http://stackoverflow.com/questions/175256/what-is-the-best-way-to-use-assembly-versioning-attributes/175259#175259 Comment by GertGregers on What is the best way to use assembly versioning attributes? GertGregers 2008-10-06T17:52:54Z 2008-10-06T17:52:54Z Nice idea, but will probably blow up after changeset-id reaches 0xfffe if you only confine it to one of the version fields, major, minor, build, revision http://stackoverflow.com/questions/170009/your-scrum-definition-of-done/170017#170017 Comment by GertGregers on Your Scrum definition of Done GertGregers 2008-10-04T09:11:54Z 2008-10-04T09:11:54Z Thanks, but I really wanted to what your own definition is; we have discussed it a lot in our own shop, and I wanted to hear other takes on Done :-)