visual studio - C# Suppress MS Fakes warnings -


how can suppress warnings generated ms fakes in build ? edited xml file generate elements need, it’s not enough.

error message

cannot generate shim restservicehelper`2+<>c: type not supported because of internal limitations.

xml sample

<fakes xmlns="schemas.microsoft.com/fakes/2011/"; diagnostic="false">    <assembly name="common.api"/>    <stubgeneration>      <clear />    </stubgeneration>    <shimgeneration>      <clear />      <add fullname="restservicehelper" />    </shimgeneration>  </fakes> 

i have read thread before asking question: suppressing microsoft fakes warnings

thanks


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -