I created a WCF service that uses TagLib# (http://developer.novell.com/wiki/index.php/TagLib_Sharp) which relies on an unmanaged dll (Win32 I think) to do much of the heavy lifting. Is there any chance of hosting this WCF service in Azure?
I did find this in the .csdef file:
<WebRole name="WebRole" enableNativeCodeExecution="true">
Does that do what I hope it does?
As an addendum does it matter if the unmanaged code is 32 or 64 bit? I know from experience that trying to call a 32 bit Dll from a 64 bit WCF service doesn't work and I believe Azure is a 64 bit platform.