views:

136

answers:

1

I have bunch of COM dependencies and my build script emits tons of following warnings:

c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets : warning : The type library importer could not convert the signature for the member 'DISPPARAMS.rgvarg'. c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets : warning : The type library importer could not convert the signature for the member 'DISPPARAMS.rgdispidNamedArgs'.

This is really annoying. How may I suppress them?

A: 

You can use the pragma keyword to disable specific warnings.

Software.Developer