User David White - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T17:44:55Zhttp://stackoverflow.com/feeds/user/30183http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1842553/versioning-sql-server/1846336#18463361Answer by David White for Versioning SQL Server?David White2009-12-04T11:17:57Z2009-12-04T11:17:57Z<p>Visual Studio Team System 2008 Database Edition (codename "DataDude") is what you need. </p>
<p>It allows you to version your database objects in ways that will blow your mind. (eg upgrade a customer site to a specific version, or rollback to a previous version without destroying any data).</p>
<p>Check out the features at Gert Drapers' blog, starting with <a href="http://blogs.msdn.com/gertd/archive/2008/11/25/visual-studio-team-system-2008-database-edition-gdr-rtm.aspx" rel="nofollow">this post</a>.</p>
<p>Or if you prefer a podcast, listen to DotNetRocks with <a href="http://www.dotnetrocks.com/default.aspx?ShowNum=494" rel="nofollow">Chris Sells in show 494</a>.</p>
<p>I don't know whether you're limited to TFS for source control, when using DataDude -- but it is the undeservedly "underhyped" member of the Visual Studio family. </p>
http://stackoverflow.com/questions/437833/com-object-in-c-vs2008-error-loading-type-library-dll0COM object in C# VS2008: Error loading type library/DLLDavid White2009-01-13T03:06:17Z2009-09-04T17:00:24Z
<p>I am trying to reference a third party COM DLL from a Visual Studio 2008 project (.NET 3.5 SP1) on Vista Ultimate.</p>
<p>I ran the setup for the COM component, and then discovered that it was not the right setup. So I uninstalled and ran the correct install. After adding the reference to a new C# project, not all the object methods are available that should be. </p>
<p>One of the compiler errors is:</p>
<blockquote>
<p>Could not determine the dependencies
of the COM reference "APIV2_COMLib".
Error loading type library/DLL.
(Exception from HRESULT: 0x80029C4A
(TYPE_E_CANTLOADLIBRARY))</p>
</blockquote>
<p>Thnking the registry might've retained incorrect values, I uninstalled the component and searched the registry for any sign of detritus, but found none. Still, reinstalling gives the same error. </p>
<p>Searching online reveals that others have experienced the same problem <a href="http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/9e4be401-c56b-417c-8393-f7dbb64b1abe/" rel="nofollow">'Odd COM error when upgrading to 3.5' in MSDN forums</a> but I haven't found answers.</p>
<p>My colleagues use the same COM object from .NET code (though not higher than .NET 2.0 or on Vista).</p>
http://stackoverflow.com/questions/271210/how-to-configure-cruisecontrol-net-to-build-one-project-on-a-remote-server2How to configure CruiseControl.NET to build one project on a remote serverDavid White2008-11-07T04:00:15Z2009-06-10T11:53:23Z
<p>I have a build server running CruiseControl.NET. It works well for the 7 projects that are configured to run on that server (let's call it server A).</p>
<p>Now I have a new project that I wish to build on a different server (server B), but I want it to appear in the same ccnet dashboard as the existing projects. </p>
<p>How do I configure CCNet for this scenario?</p>
http://stackoverflow.com/questions/490355/moq-how-to-assert-that-methods-on-my-mock-object-are-not-run3Moq: how to assert that methods on my mock object are NOT run?David White2009-01-29T02:59:20Z2009-01-29T03:04:55Z
<p>I have mocks working where I test that methods on my mocked object are called with the correct parameters, and return the right result.</p>
<p>Now I want to check another condition. In this case, NO methods should be run on the mocked object. How can I express this in a unit test? </p>
http://stackoverflow.com/questions/460011/polymorphic-search-for-files-in-file-system-or-in-assembly-embedded-resources0polymorphic search for files in file system or in assembly embedded resourcesDavid White2009-01-20T03:16:42Z2009-01-20T03:45:04Z
<p>I am learning to use polymorphism in C#, but cannot figure out this one. I'm trying to write a class that allows me to get a filtered list of files from a repository. </p>
<p>The repository could be a file system folder or the embedded resources in an arbitrary already-loaded assembly (but it is not the one currently executing).</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/260847/unit-test-msbuild-custom-task-without-task-attempted-to-log-before-it-was-initia3Unit test MSBuild Custom Task without "Task attempted to log before it was initialized" errorDavid White2008-11-04T04:05:33Z2009-01-02T14:43:04Z
<p>I have written a few MSBuild custom tasks that work well and are use in our CruiseControl.NET build process.</p>
<p>I am modifying one, and wish to unit test it by calling the Task's Execute() method. </p>
<p>However, if it encounters a line containing </p>
<pre><code>Log.LogMessage("some message here");
</code></pre>
<p>it throws an InvalidOperationException:</p>
<p><em>Task attempted to log before it was initialized. Message was...</em></p>
<p>Any suggestions? (In the past I have mostly unit-tested Internal static methods on my custom tasks to avoid such problems.)</p>
http://stackoverflow.com/questions/380052/msmq-v-database-table7MSMQ v Database TableDavid White2008-12-19T03:48:52Z2008-12-21T20:14:42Z
<p>An existing process changes the status field of a booking record in a table, in response to user input.</p>
<p>I have another process to write, that will run asynchronously for records with a particular status. It will read the table record, perform some operations (including calls to third party web services), and update the record's status field to indicate that processing is completed (or In Error, with an error count).</p>
<p>This operation sounds very similar to a queue. What are the benefits and tradeoffs of using MSMQ over a SQL Table in this situation, and why should I choose one over the other?</p>
<p>It is our software that is adding and updating records in the table.</p>
<p>It is a new piece of work (a Windows Service) that will be performing the asynchronous processing. This needs to be "always up".</p>
http://stackoverflow.com/questions/380052/msmq-v-database-table/384869#3848691Answer by David White for MSMQ v Database TableDavid White2008-12-21T19:57:28Z2008-12-21T19:57:28Z<p>I also like this answer from <a href="http://stackoverflow.com/users/31641/le-dorfier">le dorfier</a> in the <a href="http://stackoverflow.com/questions/255794/queues-against-tables-in-messaging-systems">previous discussion</a>:</p>
<blockquote>
<p>I've used tables first, then refactor
to a full-fledged msg queue when (and
if) there's reason - which is trivial
if your design is reasonable.</p>
</blockquote>
<p>Thanks, folks, for all the answers. Most helpful.</p>
http://stackoverflow.com/questions/271210/how-to-configure-cruisecontrol-net-to-build-one-project-on-a-remote-server/276599#2765991Answer by David White for How to configure CruiseControl.NET to build one project on a remote serverDavid White2008-11-09T22:40:35Z2008-11-09T22:40:35Z<p>Duckworth's answer is the one I found via Google. I found the complete story (identifying all protagonists) as:</p>
<p>Open the dashboard.config file. Its default location is \Program Files\CruiseControl.NET\webdashboard. </p>
<p>At the top of dashboard.config, add the extra server. Eg</p>
<p>
</p>
<p>and save the changes.</p>
<p>To force the changes to appear on your CruiseControl.NET dashboard, edit the web.config file in the same folder and save it. Refresh the dashboard web page.</p>
http://stackoverflow.com/questions/130592/is-continuous-integration-important-for-a-solo-developer/231278#2312781Answer by David White for Is Continuous Integration important for a solo developer?David White2008-10-23T20:06:40Z2008-10-23T20:06:40Z<p>We use our CI system to do Release builds (as well as the usual automatic "on-commit" builds). </p>
<p>Being able to click a button that kicks off a Release build that steps through all the processes to release a setup is:</p>
<ul>
<li>fast (I can go straight on with other things, and it runs on a separate machine so it is not slowing me down);</li>
<li>repetitive (it doesn't forget anything, including copying the setup to the release folder and notifying everyone who needs to know)</li>
<li>dependable (no mistakes, unlike a human!).</li>
</ul>
<p>In an Agile environment, where you expect to be delivering working software every 2-4 weeks, this is definitely worth having, even in a team of 1.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/224289#2242896Answer by David White for What's Your Motto As A Developer/Programmer?David White2008-10-22T02:34:12Z2008-10-22T02:34:12Z<p>"How does this help the user to kick ass?" - <a href="http://headrush.typepad.com/creating_passionate_users/" rel="nofollow"><em>Kathy Sierra</em></a></p>
http://stackoverflow.com/questions/223253/how-can-i-use-msbuild-to-update-version-information-only-when-an-assembly-has-cha/224116#2241165Answer by David White for How can I use MSBuild to update version information only when an assembly has changed?David White2008-10-22T00:55:07Z2008-10-22T00:55:07Z<p>I cannot answer all your questions, as I don't have experience with TFS.</p>
<p>But I can recommend a better approach to use for updating your AssemblyInfo.cs files than using the AssemblyInfo task. That task appears to just recreate a standard AssemblyInfo file from scratch, and loses any custom portions you may have added.</p>
<p>For that reason, I suggest you look into the FileUpdate task, from the MSBuild Community Tasks project. It can look for specific content in a file and replace it, like this:</p>
<pre><code><FileUpdate
Files="$(WebDir)\Properties\AssemblyInfo.cs"
Regex="(\d+)\.(\d+)\.(\d+)\.(\d+)"
ReplacementText="$(Major).$(ServicePack).$(Build).$(Revision)"
Condition="'$(Configuration)' == 'Release'"
/>
</code></pre>
<p>There are several ways you can control the incrementing of the build number. Because I only want the build number to increment if the build is completely successful, I use a 2-step method:</p>
<ul>
<li>read a number from a text file (the only thing in the file is the number) and add 1 without changing the file;</li>
<li>as a final step in the build process, if everything succeeded, save the incremented number back to the text file.</li>
</ul>
<p>There are tasks such as ReadLinesFromFile, that can help you with this, but I found it easiest to write a small custom task:</p>
<pre><code>using System;
using System.IO;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace CredibleCustomBuildTasks
{
public class IncrementTask : Task
{
[Required]
public bool SaveChange { get; set; }
[Required]
public string IncrementFileName { get; set; }
[Output]
public int Increment { get; set; }
public override bool Execute()
{
if (File.Exists(IncrementFileName))
{
string lines = File.ReadAllText(IncrementFileName);
int result;
if(Int32.TryParse(lines, out result))
{
Increment = result + 1;
}
else
{
Log.LogError("Unable to parse integer in '{0}' (contents of {1})");
return false;
}
}
else
{
Increment = 1;
}
if (SaveChange)
{
File.Delete(IncrementFileName);
File.WriteAllText(IncrementFileName, Increment.ToString());
}
return true;
}
}
}
</code></pre>
<p>I use this before the FileUpdateTask to get the next build number:</p>
<pre><code><IncrementTask
IncrementFileName="$(BuildNumberFile)"
SaveChange="false">
<Output TaskParameter="Increment" PropertyName="Build" />
</IncrementTask>
</code></pre>
<p>and as my final step (before notifying others) in the build:</p>
<pre><code><IncrementTask
IncrementFileName="$(BuildNumberFile)"
SaveChange="true"
Condition="'$(Configuration)' == 'Release'" />
</code></pre>
<p>Your other question of how to update the version number only when source code has changed is highly dependent on your how your build process interacts with your source control. Normally, checking in source file changes should initiate a Continuous Integration build. That is the one to use to update the relevant version number.</p>
http://stackoverflow.com/questions/217187/storing-c-data-structure-into-a-sql-database/326943#326943Comment by David White on Storing C# data structure into a SQL databaseDavid White2009-11-09T02:43:29Z2009-11-09T02:43:29ZMinor correction: Generic types ARE allowed, if you use DataContract serialization or NetDataContract serialization, rather than XML serialization.http://stackoverflow.com/questions/437833/com-object-in-c-vs2008-error-loading-type-library-dllComment by David White on COM object in C# VS2008: Error loading type library/DLLDavid White2009-11-07T00:40:40Z2009-11-07T00:40:40ZYes, we sorted it. I copied the interop DLL (Interop.APIV2_COMLib.dll) that was produced when my colleagues compiled on XP, onto my PC. It is a different size from the same file produced with Vista (good = 13KB, bad = 10KB), as the dud version is missing several methods.http://stackoverflow.com/questions/490355/moq-how-to-assert-that-methods-on-my-mock-object-are-not-run/490363#490363Comment by David White on Moq: how to assert that methods on my mock object are NOT run?David White2009-01-29T03:12:25Z2009-01-29T03:12:25ZThanks! I wasn't sure what to look for in the documentation (as little as there is).http://stackoverflow.com/questions/460011/polymorphic-search-for-files-in-file-system-or-in-assembly-embedded-resources/460043#460043Comment by David White on polymorphic search for files in file system or in assembly embedded resourcesDavid White2009-01-20T03:47:51Z2009-01-20T03:47:51ZNelson, I understand your code. But it doesn't address the hard part: how do I get from passing a string to having an Assembly object that I can call methods on? And how do I avoid loading that Assembly on every call, if it is already loaded?