User ferventcoder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T01:41:40Z http://stackoverflow.com/feeds/user/18475 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1433638/how-to-add-event-listener-via-fluent-nhibernate/1757470#1757470 0 Answer by ferventcoder for how to add event listener via fluent nhibernate? ferventcoder 2009-11-18T16:58:46Z 2009-11-18T16:58:46Z <p>I totally need to check StackOverflow before I post... <a href="http://ferventcoder.com/archive/2009/11/18/nhibernate-event-listener-registration-with-fluent-nhibernate.aspx" rel="nofollow">http://ferventcoder.com/archive/2009/11/18/nhibernate-event-listener-registration-with-fluent-nhibernate.aspx</a></p> http://stackoverflow.com/questions/1738666/how-do-i-make-a-database-backup-and-have-it-stored-locally 1 How do I make a database backup and have it stored locally? ferventcoder 2009-11-15T20:13:15Z 2009-11-16T23:08:11Z <p>So here's the challenge. I need to use C# to back up a database locally from a remote database server and the only share we have is \\computer\c$.</p> <p>If the answer is to back up to a location on the remote database server and then copy that local, assume there is not a share on the remote location. Just b/c I have access to the database does not mean I have access to the file system.</p> <p>This Q/A looks close to what I want, but remember the regular account in the database will not have access to the network. <a href="http://stackoverflow.com/questions/128166/sample-sql-script-to-zip-and-transfer-database-backup-file">http://stackoverflow.com/questions/128166/sample-sql-script-to-zip-and-transfer-database-backup-file</a> </p> <p>With all of that in mind...anyone done something like this and care to share? Or have an idea of how to do this?</p> <p>UPDATE: I was being vague on purpose. The context here is this:</p> <ol> <li>I do not have access to files on the server where the database is.</li> <li>I am running the C# from the client under the client's credentials, so I have full control of the client computer and can do anything in this domain.</li> </ol> <p>I think I actually have figured out what we are going to do though:</p> <ol> <li>Create a special folder in the AppData area of the current user.</li> <li>Create a fileshare to that folder</li> <li>Add rights to Everyone for that particular share and folder.</li> <li>Process the backup based on that share.</li> <li>Remove the share and reset the permissions.</li> </ol> <p>In case anyone is curious what this question refers to: <a href="http://code.google.com/p/roundhouse/issues/detail?id=3" rel="nofollow">RoundhousE</a></p> http://stackoverflow.com/questions/1738666/how-do-i-make-a-database-backup-and-have-it-stored-locally/1745454#1745454 0 Answer by ferventcoder for How do I make a database backup and have it stored locally? ferventcoder 2009-11-16T23:08:11Z 2009-11-16T23:08:11Z <p>think I actually have figured out what we are going to do:</p> <ol> <li>Create a special folder in the AppData area of the current user. </li> <li>Create a fileshare to that folder </li> <li>Add rights to Everyone for that particular share and folder. </li> <li>Process the backup based on that share. </li> <li>Remove the share and reset the permissions.</li> </ol> <p>In case anyone is curious what this question refers to: <a href="http://code.google.com/p/roundhouse/issues/detail?id=3" rel="nofollow">RoundhousE</a></p> http://stackoverflow.com/questions/313/net-migrations-engine/1641617#1641617 0 Answer by ferventcoder for .NET Migrations Engine ferventcoder 2009-10-29T04:28:41Z 2009-10-29T04:28:41Z <p>There is a new kid on the block named <a href="http://roundhouse.googlecode.com" rel="nofollow">RoundhousE</a>. Basically some of the same idioms as Tarantino where you write regular SQL scripts (some companies like ours are into that). </p> <p>You provide RoundhousE a folder with the folders:</p> <ul> <li>Up</li> <li>Down (at some point)</li> <li>Functions</li> <li>Views</li> <li>Sprocs</li> <li>Permissions</li> </ul> <p>and it will execute everything in those folders. The items in the Up folder are only executed one time. That is where you put DDL/DML changes. Everything else will execute every time that RoundhousE executes against that directory. Did I mention you could override each of those folders with your own naming scheme (like to use a folder called Update instead of Up)? </p> <p>We also version the database based on the version of the repository so that it makes it easy to determine where the database is in relation to the source code (and we allow for multiple repositories to version the database). </p> <p>Works with NAnt, MSBuild, and soon will have a standalone console app (so it will work with any deployment system).</p> http://stackoverflow.com/questions/1620980/mono-migration-analyzer-what-are-all-of-the-command-line-switches 0 Mono Migration Analyzer: What are all of the command line switches? ferventcoder 2009-10-25T13:55:46Z 2009-10-25T16:17:32Z <p>So I'm looking here and I see the command line switches. <a href="http://mono-project.com/Command%5FLine%5FMoMA" rel="nofollow">http://mono-project.com/Command_Line_MoMA</a> </p> <p>This is what I see as the total amount of switches from the site:</p> <blockquote> <p>MoMA.exe --nogui --out C:\app\momareport\report.html C:\app\myapp.exe</p> </blockquote> <p>One thing I see is the submit.xml going to a place I don't want during my automated build. Since it is a generated file, I want to change where it goes. Is there a switch for that? </p> <p>Also, what are all of the switches for it?</p> <p>If there is not a switch for moving the submit.xml to a reporting location, please consider it for future versions.</p> <p>EDIT: The argument --help does not work. I tried that and a host of others to try to get some dialog from MoMA on the command line. I'm on Windows to help alleviate any confusion.</p> http://stackoverflow.com/questions/102877/can-you-use-wmi-to-create-an-msmq-message-queue-private-queue 1 Can you use WMI to create an MSMQ message queue (PRIVATE queue)? ferventcoder 2008-09-19T15:29:23Z 2009-09-26T04:00:02Z <p>I need to create a PRIVATE message queue on a remote machine and I have resolved to fact that I can't do this with the .NET Framework in a straight forward manner. I can create a public message queue on a remote machine, but not a PRIVATE one. I can create a message queue (public or private) locally.</p> <p>I am wondering if anyone knows how to access MSMQ through WMI.</p> <p><strong>Edit:</strong> I don't see anything to do it with using the MSMQ Provider. May have to get tricky and use PSExec to log onto a remote server and execute some code.</p> http://stackoverflow.com/questions/99980/what-tools-do-you-use-to-implement-soa-messaging 1 What tools do you use to implement SOA/Messaging? ferventcoder 2008-09-19T06:01:57Z 2009-08-17T12:25:11Z <p><a href="http://www.nservicebus.com/" rel="nofollow">NServiceBus</a> and <a href="http://code.google.com/p/masstransit/" rel="nofollow">MassTransit</a> are two tools that can be used to implement messaging with MSMQ and other message queues.</p> <p>I find that once you start using messaging to have applications talk to each other, you don't really want to go back to the old RPC style.</p> <p>My question is, what other tools are out there? What tools do you use?</p> http://stackoverflow.com/questions/247350/available-build-tools-make-etc/873042#873042 2 Answer by ferventcoder for Available Build Tools (make, etc)? ferventcoder 2009-05-16T18:50:21Z 2009-06-08T16:36:37Z <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">UppercuT</a> - </p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/uppercut.aspx" rel="nofollow">UppercuT</a></p> <p>Pros -</p> <ul> <li>Super easy to get started - Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!!!</li> <li>Limited knowledge of NAnt necessary.</li> </ul> <p>Cons - </p> <ul> <li>Only available for .NET</li> </ul> http://stackoverflow.com/questions/12176/svn-revision-version-in-net-assembly-w-out-cc-net/965790#965790 0 Answer by ferventcoder for SVN Revision Version in .NET Assembly w/ out CC.NET ferventcoder 2009-06-08T16:34:24Z 2009-06-08T16:34:24Z <p>You can use a shared Assembly Version file that you can reference in all of your projects.</p> <p><a href="http://uppercut.googlecode.com" rel="nofollow">UppercuT</a> does this - <a href="http://ferventcoder.com/archive/2009/05/21/uppercut---automated-builds---versionbuilder.aspx" rel="nofollow">http://ferventcoder.com/archive/2009/05/21/uppercut---automated-builds---versionbuilder.aspx</a></p> <p>This will give you an idea of what you can do to get versions in your assemblies.</p> http://stackoverflow.com/questions/777273/tools-to-assess-and-instrument-software-quality-net/873108#873108 0 Answer by ferventcoder for Tools to assess and instrument software quality (.net) ferventcoder 2009-05-16T19:27:16Z 2009-05-21T10:07:59Z <p>UppercuT.</p> <p>It uses the following to analyze code:</p> <ul> <li>NUnit OR MbUnit</li> <li>NCover</li> <li>NDepend</li> </ul> <p>UppercuT uses NAnt to build and it is the insanely easy to use Build Framework! </p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/uppercut.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/745805/should-a-build-deployment-script-include-the-configs/873133#873133 0 Answer by ferventcoder for Should a build/deployment script include the configs? ferventcoder 2009-05-16T19:38:10Z 2009-05-21T10:06:52Z <p>Use Uppercut. Then you keep ONE template file in source control, some settings files for each environment and UppercuT builds them for you automatically. Then you can use your deployment framework to select the proper one.</p> <p>UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here (including an explanation of ConfigBuilder): <a href="http://ferventcoder.com/category/uppercut.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/469551/is-continuous-integration-worth-it-for-small-projects/873100#873100 0 Answer by ferventcoder for Is continuous integration worth it for small projects? ferventcoder 2009-05-16T19:23:42Z 2009-05-21T10:05:02Z <p>It really depends on how fast you can set up an automated build and then get that hooked up to a CI server.</p> <p><strong>.NET</strong></p> <p>I've seen us go from no automated build to an automated build for a project in a few minutes using UppercuT. We use that and CruiseControl.NET (in the configuration, we add a line per project b/c we take advantage of the preprocessor).</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/uppercut.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/320940/what-build-tool-do-you-use-professionally/873112#873112 0 Answer by ferventcoder for What build tool do you use professionally? ferventcoder 2009-05-16T19:29:12Z 2009-05-21T10:04:25Z <p>UppercuT. It's free.</p> <p>UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.</p> <p>Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!!!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/uppercut.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/99535/what-tools-do-you-use-for-automated-builds-automated-deployments-why 4 What tools do you use for Automated Builds / Automated Deployments? Why? ferventcoder 2008-09-19T04:06:42Z 2009-05-21T10:03:33Z <p>What tools do you use for Automated Builds / Automated Deployments? Why?</p> <p>What tools do you recommend?</p> http://stackoverflow.com/questions/99535/what-tools-do-you-use-for-automated-builds-automated-deployments-why/872972#872972 0 Answer by ferventcoder for What tools do you use for Automated Builds / Automated Deployments? Why? ferventcoder 2009-05-16T18:20:00Z 2009-05-21T10:03:33Z <p>UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.</p> <p>Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/UppercuT.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/57730/best-build-process-solution-to-manage-build-versions/872964#872964 0 Answer by ferventcoder for Best build process solution to manage build versions ferventcoder 2009-05-16T18:17:27Z 2009-05-21T10:02:34Z <p>UppercuT can do all of this with a custom packaging task to split the applications up. And to get the version number of the source, you might think about Subversion.</p> <p>It's also insanely easy to get started.</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/uppercut.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/24580/how-do-you-automate-a-visual-studio-build/873153#873153 0 Answer by ferventcoder for How do you automate a visual studio build? ferventcoder 2009-05-16T19:46:05Z 2009-05-21T10:01:58Z <p>Take a look at UppercuT. It has a lot of bang for your buck and it does what you are looking for and much more.</p> <p>UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.</p> <p>Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/uppercut.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/16550/best-net-build-tool/872934#872934 0 Answer by ferventcoder for best .net build tool ferventcoder 2009-05-16T18:04:23Z 2009-05-21T09:59:19Z <p>UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.</p> <p>Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/187741/continuous-integration-with-nant/873121#873121 0 Answer by ferventcoder for Continuous Integration with Nant ferventcoder 2009-05-16T19:32:59Z 2009-05-21T09:57:10Z <p>We use CruiseControl.NET and take advantage of it's preprocessors. </p> <p>For the NAnt part, we use UppercuT. UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/142225/is-there-a-dynamic-language-based-net-build-tool/873147#873147 1 Answer by ferventcoder for Is there a dynamic language based .NET build tool? ferventcoder 2009-05-16T19:43:49Z 2009-05-21T09:56:33Z <p>You could try <a href="http://code.google.com/p/fluent-build" rel="nofollow">FluentBuild</a>.</p> <p>For my money, using UppercuT (uses NAnt in the back end) is an optimal solution because of everything that it can do for me without much work to set it up.</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/672/which-build-configuration-management-tool/873074#873074 0 Answer by ferventcoder for Which Build-/Configuration Management Tool? ferventcoder 2009-05-16T19:06:35Z 2009-05-18T15:03:50Z <p><strong>.NET</strong></p> <p>We use UppercuT (which uses NAnt) and CruiseControl.NET</p> <p>UppercuT bakes in a lot of conventions for building and makes it as easy as (1) solution name, (2) source control path, (3) company name for most projects!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/10634/should-i-switch-from-nant-to-msbuild/873069#873069 0 Answer by ferventcoder for Should I switch from nant to msbuild? ferventcoder 2009-05-16T19:04:17Z 2009-05-18T15:03:31Z <p>I don't see any reason to switch. MsBuild itself locks you into the framework you are using. If you use NAnt, you can use it across many frameworks and shell out to msbuild to actually do the building task for you.</p> <p>I am a fan of NAnt in this respect, because it decouples you from the framework a little bit.</p> <p>I have created a framework that puts conventions into automated builds and I built it on NAnt. It's called UppercuT and it is the insanely easy to use Build Framework.</p> <p>Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/107749/what-is-your-favourite-buildsystem/873061#873061 1 Answer by ferventcoder for What is your favourite buildsystem? ferventcoder 2009-05-16T18:59:30Z 2009-05-18T15:02:58Z <p>UppercuT with CruiseControl.NET!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/191093/what-tools-do-you-recommend-to-auto-build-your-application/873057#873057 1 Answer by ferventcoder for What Tools Do You Recommend To Auto-Build Your Application? ferventcoder 2009-05-16T18:57:45Z 2009-05-18T15:02:40Z <p>We use CruiseControl.NET and UppercuT (which uses NAnt) to do this. UppercuT uses conventions for building so it makes it really easy for someone to get started by answering three questions (What is the solution named? What is the path to source control? What is your company's name?) and you are building.</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/14893/improving-your-build-process/873047#873047 0 Answer by ferventcoder for Improving Your Build Process ferventcoder 2009-05-16T18:54:49Z 2009-05-18T15:02:11Z <p>We use UppercuT. UppercuT uses NAnt to build and it is extremely easy to use.</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/530262/net-projects-build-automation-with-nant-msbuild-svn/873032#873032 0 Answer by ferventcoder for .NET projects build automation with NAnt/MSBuild + SVN ferventcoder 2009-05-16T18:43:21Z 2009-05-18T15:01:18Z <p>UppercuT might be a great resource to check out for NAnt snippets.</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/729545/why-is-there-no-need-for-maven-in-net/873014#873014 1 Answer by ferventcoder for Why is there no need for Maven in .NET? ferventcoder 2009-05-16T18:35:41Z 2009-05-18T15:00:47Z <p>We use UppercuT. UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.</p> <p>Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/836553/net-build-automation/873005#873005 0 Answer by ferventcoder for .Net Build Automation ferventcoder 2009-05-16T18:32:22Z 2009-05-18T15:00:02Z <p>Take a look at UppercuT. It has a lot of bang for your buck and it does what you are looking for and much more.</p> <p>UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.</p> <p>Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!!!</p> <p><a href="http://code.google.com/p/uppercut/" rel="nofollow">http://code.google.com/p/uppercut/</a></p> <p>Some good explanations here: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a></p> http://stackoverflow.com/questions/165831/daily-build-vs-zero-defect/165843#165843 14 Answer by ferventcoder for Daily Build vs. Zero Defect ferventcoder 2008-10-03T05:56:10Z 2009-05-18T14:59:29Z <p>Simple: Never check in code with <strong>(known)</strong> bugs in it. This doesn't mean you check in once per day. Check in when you have a meaningful change implemented so the other developers can get access to it.</p> <p>We always integrate locally, run our tests against the code, and when all passes, we check in. I check in about 20-30 times a day when working. The build server picks up changes and it runs builds against the system. Continous Integration (CI) is a good thing. :D</p> <h2>Continuous Integration - Automate Your Builds</h2> <p>Start out with building successfully and keep it that way as much as possible. It is essential in a team environment. Just remember that builds will break. It's expected that they break every once in awhile. It is a sign that you just inadvertently checked in something bad, and you stop what you are doing to make the build green again. A build server that never has broken builds is a warning sign! </p> <p>I also agree with chadmyers' answer: Whatever you decide, it needs to be automatic and automated. The best thing about automating tools to do this kind of stuff for you is that you no longer have to think about it or remember to do it. Or like Chad said, you don't stop doing it. I could recommend make a recommendation for CI tools but have a look here: <a href="http://stackoverflow.com/questions/99535/what-tools-do-you-use-for-automated-builds-automated-deployments-why">http://stackoverflow.com/questions/99535/what-tools-do-you-use-for-automated-builds-automated-deployments-why</a></p> <p>Once you have CI, you can get higher quality if you can inject some humor (and shame) by introducing a broken build token! <a href="http://ferventcoder.com/archive/2008/08/20/continuous-integration-enhancement--the-broken-build-token.aspx" rel="nofollow">http://ferventcoder.com/archive/2008/08/20/continuous-integration-enhancement--the-broken-build-token.aspx</a></p> <h2>Use a Good Tool for Automated Builds</h2> <p>Most people in .NET land use NAnt or MSBuild scripts to have automated builds that they can later hook up to their CI server. If you are just starting out, my suggestion would be to use <a href="http://code.google.com/p/uppercut/" rel="nofollow">UppercuT</a>, it is an insanely easy to use build framework that uses NAnt. Here is a second link with deeper explanations: <a href="http://ferventcoder.com/category/10094.aspx" rel="nofollow">UppercuT</a>.</p> <h2>Branches vs Trunk for Active Development</h2> <p>You would not have to branch unless you leave trunk open only for releases (which means that everyone else is working in the same branch as you). But I would have CI on both the trunk and the active development branch.</p> <h2>Software Development Process</h2> <p>Also to answer the question on a software development process, the answer is a resounding yes. But don't rush into anything unless a drastic change is required. Pick a process you want to migrate towards and slowly start adopting processes. And evaluate, evaluate, evaluate. If the particular process is not working for your group, figure out if you are doing something wrong or if you just need to eliminate it. And then do. Whatever process you end up with needs to work for you or it won't work.</p> http://stackoverflow.com/questions/630332/build-system-for-net-with-a-make-rake-like-syntax/873085#873085 0 Answer by ferventcoder for Build System for .NET with a Make/Rake-like syntax? ferventcoder 2009-05-16T19:16:31Z 2009-05-16T19:16:31Z <p><a href="http://code.google.com/p/fluent-build/" rel="nofollow">FluentBuild</a></p> <p>There is also <a href="http://code.google.com/p/uppercut/" rel="nofollow">UppercuT</a> - which uses conventions to do the building, so it is not necessary to look at that XML syntax.</p> http://stackoverflow.com/questions/16550/best-net-build-tool/16564#16564 Comment by ferventcoder on best .net build tool ferventcoder 2009-11-25T02:59:31Z 2009-11-25T02:59:31Z Hey Peter - we do the same thing, but we templated the NAnt and make it reusable. What we ended up with we released as a product called UppercuT - <a href="http://projectuppercut.org" rel="nofollow">projectuppercut.org</a> http://stackoverflow.com/questions/844723/robust-and-friendly-command-line-tools-for-net/844888#844888 Comment by ferventcoder on Robust and friendly command line tools for .NET? ferventcoder 2009-11-25T02:53:37Z 2009-11-25T02:53:37Z Big ups for Mono.Options - <a href="http://devlicio.us/blogs/rob_reynolds/archive/2009/11/22/command-line-parsing-with-mono-options.aspx" rel="nofollow">devlicio.us/blogs/rob_reynolds/&hellip;</a> http://stackoverflow.com/questions/1620980/mono-migration-analyzer-what-are-all-of-the-command-line-switches/1621302#1621302 Comment by ferventcoder on Mono Migration Analyzer: What are all of the command line switches? ferventcoder 2009-11-23T04:28:01Z 2009-11-23T04:28:01Z That was really the only one. I just didn't want a file changing every time in source. But I can set it to ignore for now. http://stackoverflow.com/questions/1738666/how-do-i-make-a-database-backup-and-have-it-stored-locally/1739261#1739261 Comment by ferventcoder on How do I make a database backup and have it stored locally? ferventcoder 2009-11-18T16:13:12Z 2009-11-18T16:13:12Z I didn't vote you down... but to be clear, I want to do an automated database backup from a remote server and don't have access to the remote file system. I would like to have the backup be stored locally. I don't want the .mdf file, I want the .bak (think SQL server for now). http://stackoverflow.com/questions/1738666/how-do-i-make-a-database-backup-and-have-it-stored-locally/1739316#1739316 Comment by ferventcoder on How do I make a database backup and have it stored locally? ferventcoder 2009-11-16T22:45:22Z 2009-11-16T22:45:22Z I actually think I might have it figured out. <a href="http://code.google.com/p/roundhouse/issues/detail?id=3" rel="nofollow">code.google.com/p/roundhouse/&hellip;</a> http://stackoverflow.com/questions/1738666/how-do-i-make-a-database-backup-and-have-it-stored-locally Comment by ferventcoder on How do I make a database backup and have it stored locally? ferventcoder 2009-11-16T22:44:24Z 2009-11-16T22:44:24Z Thanks man. I will be less vague http://stackoverflow.com/questions/313/net-migrations-engine/5550#5550 Comment by ferventcoder on .NET Migrations Engine ferventcoder 2009-11-15T20:16:49Z 2009-11-15T20:16:49Z RoundhousE is a new kid on the block that hopes to accomplish more with migrations. <a href="http://projectroundhouse.org" rel="nofollow">projectroundhouse.org</a> There are some articles over at ferventcoder.com showcasing what it can do. http://stackoverflow.com/questions/1620980/mono-migration-analyzer-what-are-all-of-the-command-line-switches/1621302#1621302 Comment by ferventcoder on Mono Migration Analyzer: What are all of the command line switches? ferventcoder 2009-10-28T11:30:14Z 2009-10-28T11:30:14Z Thanks man. Any future plans to allow for more switches? http://stackoverflow.com/questions/1620980/mono-migration-analyzer-what-are-all-of-the-command-line-switches/1620983#1620983 Comment by ferventcoder on Mono Migration Analyzer: What are all of the command line switches? ferventcoder 2009-10-25T14:38:24Z 2009-10-25T14:38:24Z Perhaps this is because I am running from Windows? http://stackoverflow.com/questions/1620980/mono-migration-analyzer-what-are-all-of-the-command-line-switches/1620983#1620983 Comment by ferventcoder on Mono Migration Analyzer: What are all of the command line switches? ferventcoder 2009-10-25T14:29:32Z 2009-10-25T14:29:32Z Unknown argument: --help http://stackoverflow.com/questions/994356/nhibernate-mapping-with-no-id/999302#999302 Comment by ferventcoder on NHibernate Mapping with No Id ferventcoder 2009-06-26T16:45:24Z 2009-06-26T16:45:24Z Okay - dumb question. How does one map to the row index? What does that look like in the mapping file? We looked for this in the documentation and decided to ask. http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247378#247378 Comment by ferventcoder on Available Build Tools (make, etc)? ferventcoder 2009-05-16T18:52:15Z 2009-05-16T18:52:15Z You could use UppercuT <a href="http://uppercut.pbwiki.com" rel="nofollow">uppercut.pbwiki.com</a> to get started with NAnt. http://stackoverflow.com/questions/3058/what-is-inversion-of-control/99760#99760 Comment by ferventcoder on What is Inversion of Control? ferventcoder 2009-01-02T19:12:52Z 2009-01-02T19:12:52Z <a href="http://ferventcoder.com/archive/2008/12/14/the-real-reason-to-use-a-dependency-injection-container-like.aspx" rel="nofollow">ferventcoder.com/archive/2008/&hellip;</a> http://stackoverflow.com/questions/407255/difference-between-declaring-variables-before-or-in-loop/407305#407305 Comment by ferventcoder on Difference between declaring variables before or in loop? ferventcoder 2009-01-02T19:05:14Z 2009-01-02T19:05:14Z Here is a reference about this from Paul Vick: <a href="http://www.panopticoncentral.net/archive/2006/03/28/11552.aspx" rel="nofollow">panopticoncentral.net/archive/2006/&hellip;</a> http://stackoverflow.com/questions/102877/can-you-use-wmi-to-create-an-msmq-message-queue-private-queue/287206#287206 Comment by ferventcoder on Can you use WMI to create an MSMQ message queue (PRIVATE queue)? ferventcoder 2008-11-24T17:10:42Z 2008-11-24T17:10:42Z Remote please... not local creation