User ferventcoder - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T01:41:40Zhttp://stackoverflow.com/feeds/user/18475http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1433638/how-to-add-event-listener-via-fluent-nhibernate/1757470#17574700Answer by ferventcoder for how to add event listener via fluent nhibernate?ferventcoder2009-11-18T16:58:46Z2009-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-locally1How do I make a database backup and have it stored locally?ferventcoder2009-11-15T20:13:15Z2009-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#17454540Answer by ferventcoder for How do I make a database backup and have it stored locally?ferventcoder2009-11-16T23:08:11Z2009-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#16416170Answer by ferventcoder for .NET Migrations Engineferventcoder2009-10-29T04:28:41Z2009-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-switches0Mono Migration Analyzer: What are all of the command line switches?ferventcoder2009-10-25T13:55:46Z2009-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-queue1Can you use WMI to create an MSMQ message queue (PRIVATE queue)? ferventcoder2008-09-19T15:29:23Z2009-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-messaging1What tools do you use to implement SOA/Messaging?ferventcoder2008-09-19T06:01:57Z2009-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#8730422Answer by ferventcoder for Available Build Tools (make, etc)?ferventcoder2009-05-16T18:50:21Z2009-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#9657900Answer by ferventcoder for SVN Revision Version in .NET Assembly w/ out CC.NETferventcoder2009-06-08T16:34:24Z2009-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#8731080Answer by ferventcoder for Tools to assess and instrument software quality (.net) ferventcoder2009-05-16T19:27:16Z2009-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#8731330Answer by ferventcoder for Should a build/deployment script include the configs?ferventcoder2009-05-16T19:38:10Z2009-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#8731000Answer by ferventcoder for Is continuous integration worth it for small projects?ferventcoder2009-05-16T19:23:42Z2009-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#8731120Answer by ferventcoder for What build tool do you use professionally?ferventcoder2009-05-16T19:29:12Z2009-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-why4What tools do you use for Automated Builds / Automated Deployments? Why?ferventcoder2008-09-19T04:06:42Z2009-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#8729720Answer by ferventcoder for What tools do you use for Automated Builds / Automated Deployments? Why?ferventcoder2009-05-16T18:20:00Z2009-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#8729640Answer by ferventcoder for Best build process solution to manage build versions ferventcoder2009-05-16T18:17:27Z2009-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#8731530Answer by ferventcoder for How do you automate a visual studio build?ferventcoder2009-05-16T19:46:05Z2009-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#8729340Answer by ferventcoder for best .net build toolferventcoder2009-05-16T18:04:23Z2009-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#8731210Answer by ferventcoder for Continuous Integration with Nantferventcoder2009-05-16T19:32:59Z2009-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#8731471Answer by ferventcoder for Is there a dynamic language based .NET build tool?ferventcoder2009-05-16T19:43:49Z2009-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#8730740Answer by ferventcoder for Which Build-/Configuration Management Tool?ferventcoder2009-05-16T19:06:35Z2009-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#8730690Answer by ferventcoder for Should I switch from nant to msbuild?ferventcoder2009-05-16T19:04:17Z2009-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#8730611Answer by ferventcoder for What is your favourite buildsystem?ferventcoder2009-05-16T18:59:30Z2009-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#8730571Answer by ferventcoder for What Tools Do You Recommend To Auto-Build Your Application? ferventcoder2009-05-16T18:57:45Z2009-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#8730470Answer by ferventcoder for Improving Your Build Processferventcoder2009-05-16T18:54:49Z2009-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#8730320Answer by ferventcoder for .NET projects build automation with NAnt/MSBuild + SVNferventcoder2009-05-16T18:43:21Z2009-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#8730141Answer by ferventcoder for Why is there no need for Maven in .NET?ferventcoder2009-05-16T18:35:41Z2009-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#8730050Answer by ferventcoder for .Net Build Automationferventcoder2009-05-16T18:32:22Z2009-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#16584314Answer by ferventcoder for Daily Build vs. Zero Defectferventcoder2008-10-03T05:56:10Z2009-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#8730850Answer by ferventcoder for Build System for .NET with a Make/Rake-like syntax?ferventcoder2009-05-16T19:16:31Z2009-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#16564Comment by ferventcoder on best .net build toolferventcoder2009-11-25T02:59:31Z2009-11-25T02:59:31ZHey 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#844888Comment by ferventcoder on Robust and friendly command line tools for .NET?ferventcoder2009-11-25T02:53:37Z2009-11-25T02:53:37ZBig 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/…</a> http://stackoverflow.com/questions/1620980/mono-migration-analyzer-what-are-all-of-the-command-line-switches/1621302#1621302Comment by ferventcoder on Mono Migration Analyzer: What are all of the command line switches?ferventcoder2009-11-23T04:28:01Z2009-11-23T04:28:01ZThat 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#1739261Comment by ferventcoder on How do I make a database backup and have it stored locally?ferventcoder2009-11-18T16:13:12Z2009-11-18T16:13:12ZI 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#1739316Comment by ferventcoder on How do I make a database backup and have it stored locally?ferventcoder2009-11-16T22:45:22Z2009-11-16T22:45:22ZI 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/…</a>http://stackoverflow.com/questions/1738666/how-do-i-make-a-database-backup-and-have-it-stored-locallyComment by ferventcoder on How do I make a database backup and have it stored locally?ferventcoder2009-11-16T22:44:24Z2009-11-16T22:44:24ZThanks man. I will be less vaguehttp://stackoverflow.com/questions/313/net-migrations-engine/5550#5550Comment by ferventcoder on .NET Migrations Engineferventcoder2009-11-15T20:16:49Z2009-11-15T20:16:49ZRoundhousE 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#1621302Comment by ferventcoder on Mono Migration Analyzer: What are all of the command line switches?ferventcoder2009-10-28T11:30:14Z2009-10-28T11:30:14ZThanks 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#1620983Comment by ferventcoder on Mono Migration Analyzer: What are all of the command line switches?ferventcoder2009-10-25T14:38:24Z2009-10-25T14:38:24ZPerhaps 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#1620983Comment by ferventcoder on Mono Migration Analyzer: What are all of the command line switches?ferventcoder2009-10-25T14:29:32Z2009-10-25T14:29:32ZUnknown argument: --helphttp://stackoverflow.com/questions/994356/nhibernate-mapping-with-no-id/999302#999302Comment by ferventcoder on NHibernate Mapping with No Idferventcoder2009-06-26T16:45:24Z2009-06-26T16:45:24ZOkay - 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#247378Comment by ferventcoder on Available Build Tools (make, etc)?ferventcoder2009-05-16T18:52:15Z2009-05-16T18:52:15ZYou 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#99760Comment by ferventcoder on What is Inversion of Control?ferventcoder2009-01-02T19:12:52Z2009-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/…</a>http://stackoverflow.com/questions/407255/difference-between-declaring-variables-before-or-in-loop/407305#407305Comment by ferventcoder on Difference between declaring variables before or in loop?ferventcoder2009-01-02T19:05:14Z2009-01-02T19:05:14ZHere 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/…</a>http://stackoverflow.com/questions/102877/can-you-use-wmi-to-create-an-msmq-message-queue-private-queue/287206#287206Comment by ferventcoder on Can you use WMI to create an MSMQ message queue (PRIVATE queue)? ferventcoder2008-11-24T17:10:42Z2008-11-24T17:10:42ZRemote please... not local creation