<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dwmkerr.com</title>
	<atom:link href="http://www.dwmkerr.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dwmkerr.com</link>
	<description>Design, Development &#38; Architecture</description>
	<lastBuildDate>Mon, 13 May 2013 08:23:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Creating Addins &#8211; &#8216;An error occurred, and the wizard could not generate the project.&#8217;</title>
		<link>http://www.dwmkerr.com/2013/05/creating-addins-an-error-occurred-and-the-wizard-could-not-generate-the-project/</link>
		<comments>http://www.dwmkerr.com/2013/05/creating-addins-an-error-occurred-and-the-wizard-could-not-generate-the-project/#comments</comments>
		<pubDate>Mon, 13 May 2013 08:23:34 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Addin]]></category>
		<category><![CDATA[Visual Studio 2012]]></category>
		<category><![CDATA[Visual Studio Extensisbility]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=273</guid>
		<description><![CDATA[When doing a little bit of work on a solution that contains a Visual Studio Addin the other day, I noticed that there&#8217;s a little bit of an issue with Visual Studio. If you create an addin project and you get the message: An error occurred, and the wizard could not generate the project. Verify [...]]]></description>
				<content:encoded><![CDATA[<p>When doing a little bit of work on a solution that contains a Visual Studio Addin the other day, I noticed that there&#8217;s a little bit of an issue with Visual Studio. If you create an addin project and you get the message:</p>
<p><em>An error occurred, and the wizard could not generate the project. Verify that the programming language is properly installed.</em></p>
<p>Then double check <em>where </em>you are creating your addin. If it is in a child folder of the solution, then this error can occur. The solution &#8211; add the addin project to the solution root. Then if you need to, you can move it afterwards.</p>
<p>This issue occurs in Visual Studio 2012, but a bit of googling suggests that it may also be an issue in 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/05/creating-addins-an-error-occurred-and-the-wizard-could-not-generate-the-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Paths for Files in NUnit Tests</title>
		<link>http://www.dwmkerr.com/2013/05/getting-paths-for-files-in-nunit-tests/</link>
		<comments>http://www.dwmkerr.com/2013/05/getting-paths-for-files-in-nunit-tests/#comments</comments>
		<pubDate>Thu, 02 May 2013 11:07:45 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[NUnit]]></category>
		<category><![CDATA[Unit Testing]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=269</guid>
		<description><![CDATA[When using NUnit, sometimes you will want to access files in the test project. These might be xml files with data, assembly references or whatever. Now typically, NUnit will actually copy the files it thinks it needs into a temporary location. This causes the problem that you can then do things like use a relative [...]]]></description>
				<content:encoded><![CDATA[<p>When using NUnit, sometimes you will want to access files in the test project. These might be xml files with data, assembly references or whatever. Now typically, NUnit will actually copy the files it thinks it needs into a temporary location. This causes the problem that you can then do things like use a relative path to get files in the project. You can use manifest resource streams but sometimes this just isn&#8217;t suitable.</p>
<p>To get the path of the root of your test project, you can use the snippet below. Make sure you call it in a unit test fixture that&#8217;s actually in your test project, not from a class referenced in another project!</p>
<p>This class, &#8216;TestHelper&#8217; can be included in a Unit Test project to let you quickly get the path to the test project.</p>
<pre class="brush: csharp; title: ; notranslate">public static class TestHelper
{
    public static string GetTestsPath()
    {
        return Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase).Replace(@&quot;file:\&quot;, string.Empty);
    }
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/05/getting-paths-for-files-in-nunit-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing FireKeys</title>
		<link>http://www.dwmkerr.com/2013/03/introducing-firekeys/</link>
		<comments>http://www.dwmkerr.com/2013/03/introducing-firekeys/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 16:56:29 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=256</guid>
		<description><![CDATA[I don&#8217;t know when I learnt that Windows + E opened up Windows Explorer. It must have been a while ago. But it&#8217;s imprinted in my muscle memory, the number of times I hit that combo every day is probably quite high. But how many other hotkeys do I use? Asides from a few other [...]]]></description>
				<content:encoded><![CDATA[<p>I don&#8217;t know when I learnt that Windows + E opened up Windows Explorer. It must have been a while ago. But it&#8217;s imprinted in my muscle memory, the number of times I hit that combo every day is probably quite high. But how many other hotkeys do I use? Asides from a few other functional ones, like Win + D, I don&#8217;t use hotkeys so much. And I got to thinking, I&#8217;d love to open Google Chrome with a hotkey just like I do with explorer.</p>
<p>So I wrote FireKeys &#8211; a lightweight application that lets you assign hotkeys to actions. These actions could be opening program, a folder or a URL, but the underlying model is designed to be extensible.</p>
<p><a href="http://www.dwmkerr.com/wp-content/uploads/2013/03/FireKeysMain.jpg"><img class="alignnone size-full wp-image-248" alt="FireKeysMain" src="http://www.dwmkerr.com/wp-content/uploads/2013/03/FireKeysMain.jpg" width="600" height="400" /></a></p>
<p>You can get the tool from the <a title="FireKeys" href="http://www.dwmkerr.com/firekeys/">FireKeys</a> page. There&#8217;s an article on how it was developed on the CodeProject, <a href="http://www.codeproject.com/Articles/559500/FireKeys-Open-Programs-Folders-or-URLs-with-Hot-Ke">FireKeys &#8211; Open Programs, Folders and URLs with Hot Keys</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/03/introducing-firekeys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spider Solitaire and Augmented Reality</title>
		<link>http://www.dwmkerr.com/2013/02/spider-solitaire-and-augmented-reality/</link>
		<comments>http://www.dwmkerr.com/2013/02/spider-solitaire-and-augmented-reality/#comments</comments>
		<pubDate>Mon, 25 Feb 2013 22:01:20 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Apex]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[MVVM]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=233</guid>
		<description><![CDATA[A while ago, I made an implementation of Solitaire and Spider Solitaire using WPF and my Apex MVVM library. I wrote about it on the CodeProject, in an article called Solitaire and Spider Solitaire for WPF (imaginative title indeed). Anyway, just recently I got a very interesting message from rupam rupam, who has made an [...]]]></description>
				<content:encoded><![CDATA[<p>A while ago, I made an implementation of Solitaire and Spider Solitaire using WPF and my Apex MVVM library. I wrote about it on the CodeProject, in an article called <a title="Solitaire and Spider Solitaire for WPF" href="http://www.codeproject.com/Articles/252152/Solitaire-and-Spider-Solitaire-for-WPF">Solitaire and Spider Solitaire for WPF</a> (imaginative title indeed).</p>
<p>Anyway, just recently I got a very interesting message from rupam rupam, who has made an augmented reality version of the project! In his application, you use your webcam to play the game physically by picking up cards with gestures. Other gestures, like thumbs up and thumbs down are bound to commands in the game &#8211; here&#8217;s a screenshot:</p>
<p><a href="https://www.youtube.com/watch?v=wCOjuPdBooI"><img class="alignnone  wp-image-234" alt="SpiderAugmented" src="http://www.dwmkerr.com/wp-content/uploads/2013/02/SpiderAugmented.jpg" /></a></p>
<p>The project is called GesCard and as far as I know there isn&#8217;t a page showing the code &#8211; but there are more links on the YouTube video for the page. Check out the YouTube video with the link here <a href="https://www.youtube.com/watch?v=wCOjuPdBooI">https://www.youtube.com/watch?v=wCOjuPdBooI</a>. Thanks to rupam for getting in touch and sharing this very cool code!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/02/spider-solitaire-and-augmented-reality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switch Updated</title>
		<link>http://www.dwmkerr.com/2013/02/switch-updated/</link>
		<comments>http://www.dwmkerr.com/2013/02/switch-updated/#comments</comments>
		<pubDate>Sat, 16 Feb 2013 20:28:08 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Switch]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=225</guid>
		<description><![CDATA[There have been some problems with the version of Switch uploaded to the Visual Studio Gallery. I&#8217;ve created a new version of Switch (1.4) and uploaded this &#8211; it works fine now, for Visual Studio 2008, 2010 and 2012. You can find out more about this extension on the Switch Page.]]></description>
				<content:encoded><![CDATA[<p>There have been some problems with the version of Switch uploaded to the Visual Studio Gallery. I&#8217;ve created a new version of Switch (1.4) and uploaded this &#8211; it works fine now, for Visual Studio 2008, 2010 and 2012.</p>
<p>You can find out more about this extension on the <a title="Switch" href="http://www.dwmkerr.com/switch/">Switch Page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/02/switch-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Visual Studio Experimental Instance</title>
		<link>http://www.dwmkerr.com/2013/02/the-visual-studio-experimental-instance/</link>
		<comments>http://www.dwmkerr.com/2013/02/the-visual-studio-experimental-instance/#comments</comments>
		<pubDate>Sat, 16 Feb 2013 20:26:27 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=219</guid>
		<description><![CDATA[Working on some addins lately has taught me a few really useful tricks about debugging in Visual Studio. I&#8217;ll update this post over time. The Experimental Instance Very useful to know &#8211; the experimental instance loads its extensions from a special folder, and debugging extensions drops them there. The location is: %UserProfile%\AppData\Local\Microsoft\VisualStudio\10.0Exp\Extensions\]]></description>
				<content:encoded><![CDATA[<p>Working on some addins lately has taught me a few really useful tricks about debugging in Visual Studio. I&#8217;ll update this post over time.</p>
<p><strong>The Experimental Instance</strong></p>
<p>Very useful to know &#8211; the experimental instance loads its extensions from a special folder, and debugging extensions drops them there. The location is:</p>
<p>%UserProfile%\AppData\Local\Microsoft\VisualStudio\10.0Exp\Extensions\</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/02/the-visual-studio-experimental-instance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung to develop software in-house</title>
		<link>http://www.dwmkerr.com/2013/01/samsung-to-develop-software-in-house-2/</link>
		<comments>http://www.dwmkerr.com/2013/01/samsung-to-develop-software-in-house-2/#comments</comments>
		<pubDate>Wed, 16 Jan 2013 11:00:13 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[Sponsored Messages]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=214</guid>
		<description><![CDATA[While the mobile phone market has long been based upon continuing hardware development, things are now changing and companies are having to keep up. The focus of the smartphone market is now moving towards software, rather than hardware and Samsung are taking note of this change. The South Korean technology company have decided to increase [...]]]></description>
				<content:encoded><![CDATA[<p>While the mobile phone market has long been based upon continuing hardware development, things are now changing and companies are having to keep up. The focus of the smartphone market is now moving towards software, rather than hardware and Samsung are taking note of this change. The South Korean technology company have decided to increase their game in order to be able to successfully compete with American technology giant, Apple. To do this, Samsung need to alter the way they create their products, by developing their own software as well as hardware.</p>
<p>Samsung have begun to recruit software engineers, mostly in India, with the intention of being able to start developing their own software and thus staying at the top of the market. While many people consume data through Apple products, such as talking to business customers on their iPhones or playing <a href="http://de.partycasino.com/">partycasino.com</a> on their Mac computers, Samsung still have a good share of the mobile phone market. They are hoping that they will be able to create software to compete successfully with the iPhone, which is known for always being ahead of the game.</p>
<p>This move by Samsung to not only develop their own hardware, but their own software as well is a positive one for the company. They have announced that they are now open to mergers, as they are looking to combine with high-quality research and development companies.</p>
<p>The fact that Samsung’s own software ‘Bada’ has failed to become popular by consumers in the past, means that they have been running most of their devices on Google’s Android. Their plan now is to continue with this arrangement as well as working with several other software types and developing their own in the future. After Samsung overtook Nokia as leading phone manufacturer, their confidence no doubt increased and these new developments are only set to raise their prominence in the smartphone market.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/01/samsung-to-develop-software-in-house-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Info Tip Handlers with .NET</title>
		<link>http://www.dwmkerr.com/2013/01/creating-info-tip-handlers-with-net/</link>
		<comments>http://www.dwmkerr.com/2013/01/creating-info-tip-handlers-with-net/#comments</comments>
		<pubDate>Mon, 14 Jan 2013 09:32:44 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[SharpShell]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=208</guid>
		<description><![CDATA[I have just added an article to the CodeProject that discusses how to create Info Tip shell extensions in .NET. These extensions are used by the shell to customise the tooltips shown over shell items. The article shows how you can use SharpShell to very quickly create these extensions, you can find it at: http://www.codeproject.com/Articles/527058/NET-Shell-Extensions-Shell-Info-Tip-Handlers. So [...]]]></description>
				<content:encoded><![CDATA[<p>I have just added an article to the CodeProject that discusses how to create Info Tip shell extensions in .NET. These extensions are used by the shell to customise the tooltips shown over shell items.</p>
<p><a href="http://www.dwmkerr.com/2013/01/creating-info-tip-handlers-with-net/shellinfotiphandler/" rel="attachment wp-att-210"><img src="http://www.dwmkerr.com/wp-content/uploads/2013/01/ShellInfoTipHandler.png" alt="ShellInfoTipHandler" width="385" height="160" class="alignnone size-full wp-image-210" /></a></p>
<p>The article shows how you can use <a title="SharpShell on CodePlex" href="http://sharpshell.codeplex.com">SharpShell </a>to very quickly create these extensions, you can find it at: <a title="Shell Info Tip Handlers" href="http://www.codeproject.com/Articles/527058/NET-Shell-Extensions-Shell-Info-Tip-Handlers">http://www.codeproject.com/Articles/527058/NET-Shell-Extensions-Shell-Info-Tip-Handlers</a>.</p>
<p>So just how easy does SharpShell make creating Shell Info Tip Handlers? The answer is pretty easy indeed. The code below shows the <strong>full </strong>implementation of a Shell Info Tip Handler that changes the tooltips for folders to show the name of the folder and the number of items it contains:</p>
<pre class="brush: csharp; title: ; notranslate">/// &lt;summary&gt;
/// The FolderInfoTip handler is an example SharpInfoTipHandler that provides an info tip
/// for folders that shows the number of items in the folder.
/// &lt;/summary&gt;
[ComVisible(true)]
[COMServerAssociation(AssociationType.Directory)]
public class FolderInfoTipHandler : SharpInfoTipHandler
{
    /// &lt;summary&gt;
    /// Gets info for the selected item (SelectedItemPath).
    /// &lt;/summary&gt;
    /// &lt;param name=&quot;infoType&quot;&gt;Type of info to return.&lt;/param&gt;
    /// &lt;param name=&quot;singleLine&quot;&gt;if set to &lt;c&gt;true&lt;/c&gt;, put the info in a single line.&lt;/param&gt;
    /// &lt;returns&gt;
    /// Specified info for the selected file.
    /// &lt;/returns&gt;
    protected override string GetInfo(RequestedInfoType infoType, bool singleLine)
    {
        //  Switch on the tip of info we need to provide.
        switch (infoType)
        {
            case RequestedInfoType.InfoTip:
 
                //  Format the formatted info tip.
                return string.Format(singleLine
                                       ? &quot;{0} - {1} Items&quot;
                                       : &quot;{0}&quot; + Environment.NewLine + &quot;Contains {1} Items&quot;,
                                       Path.GetFileName(SelectedItemPath), Directory.GetFiles(SelectedItemPath).Length);
 
            case RequestedInfoType.Name:
                
                //  Return the name of the folder.
                return string.Format(&quot;Folder '{0}'&quot;, Path.GetFileName(SelectedItemPath));
                
            default:
 
                //  We won't be asked for anything else, like shortcut paths, for folders, so we 
                //  can return an empty string in the default case.
                return string.Empty;
        }
    }
} </pre>
<p>As you can see, all of the COM interfaces are hidden away and handled for you, there is no ugly pinvoke code and no use of strange structures imported from Win32. SharpShell handles all of the plumbing for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/01/creating-info-tip-handlers-with-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharpShell</title>
		<link>http://www.dwmkerr.com/2013/01/sharpshell/</link>
		<comments>http://www.dwmkerr.com/2013/01/sharpshell/#comments</comments>
		<pubDate>Tue, 08 Jan 2013 22:13:05 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[SharpShell]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=199</guid>
		<description><![CDATA[SharpShell is a project that I have recently uploaded to CodePlex. This class library, and set of tools and samples, is designed to be a framework to enable rapid development of Shell Extensions using the .NET Framework. In time it may grow to contain some functionality for using Shell entities within managed applications (for example, [...]]]></description>
				<content:encoded><![CDATA[<p>SharpShell is a project that I have recently uploaded to CodePlex. This class library, and set of tools and samples, is designed to be a framework to enable rapid development of Shell Extensions using the .NET Framework. In time it may grow to contain some functionality for using Shell entities within managed applications (for example, allowing an Explorer context menu to be built dynamically for a given path).</p>
<p>Anyway, the code is all at <a title="SharpShell on CodePlex" href="http://sharpshell.codeplex.com" target="_blank">sharpshell.codeplex.com</a>. You can also see a nice article on the CodeProject that show&#8217;s how to create a Shell Context Menu Extension using C#, the article is at: <a title=".NET Shell Extensions - Shell Context Menus" href="http://www.codeproject.com/Articles/512956/NET-Shell-Extensions-Shell-Context-Menus" target="_blank">.NET Shell Extensions &#8211; Shell Context Menus</a>.</p>
<p><a href="http://www.dwmkerr.com/2013/01/sharpshell/screenshot1_exampleiconhandler/" rel="attachment wp-att-200"><img class="alignnone size-full wp-image-200" alt="Screenshot1_ExampleIconHandler" src="http://www.dwmkerr.com/wp-content/uploads/2013/01/Screenshot1_ExampleIconHandler.png" width="515" height="196" /></a></p>
<p><em>Above: An example of a Managed Shell Extension. This sample colours the icons for dlls differently, depending on whether they are native dlls or assemblies.</em></p>
<p>So far, in the repo on CodePlex there are also samples for Shell Icon Handlers (which customise icons in Explorer) and Shell Info Tip Handlers (which customise tooltips). Both of these extension types are fully supported in the current dev version and will be released in the next few days. There&#8217;s also a partially functioning Shell Property Sheet implementation which will be delivered in the subsequent version. The Shell Property Sheet introduces some particularly strange code &#8211; 32 and 64 bit C++ dlls are embedded as manifest resource streams and extracted as needed to provide access to C++ function pointers &#8211; ouch.</p>
<p>More to follow &#8211; check out the project and the article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2013/01/sharpshell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SharpGL 2.1</title>
		<link>http://www.dwmkerr.com/2012/12/sharpgl-2-1/</link>
		<comments>http://www.dwmkerr.com/2012/12/sharpgl-2-1/#comments</comments>
		<pubDate>Sun, 30 Dec 2012 13:51:32 +0000</pubDate>
		<dc:creator>Dave Kerr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[SharpGL]]></category>

		<guid isPermaLink="false">http://www.dwmkerr.com/?p=186</guid>
		<description><![CDATA[For those who are interested, I&#8217;m now starting development of SharpGL 2.1. SharpGL 2.1 will primarily be a release to implement features and fix bugs that users have added to the Codeplex site. The actual features and bugs that&#8217;ll be sorted are on the CodePlex site &#8211; just search for release &#8216;SharpGL 2.1&#8242;. This will [...]]]></description>
				<content:encoded><![CDATA[<p>For those who are interested, I&#8217;m now starting development of SharpGL 2.1. SharpGL 2.1 will primarily be a release to implement features and fix bugs that users have added to the Codeplex site. The actual features and bugs that&#8217;ll be sorted are on the CodePlex site &#8211; just search for release &#8216;SharpGL 2.1&#8242;.</p>
<p>This will also be the first release of SharpGL that will be published on Nuget.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwmkerr.com/2012/12/sharpgl-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
