c++ - How to hide C# warning using project(.csproj) file -


one of c# project uses multiple c++ dlls. need hide warning same project.

alink : warning al1073: referenced assembly 'mscorlib.dll' targets different processor

i know it can use c# code this using project file. in case need use project file this.

in c++ project file, can

<link>     <additionaloptions> /ignore:xxxx %(additionaloptions)</additionaloptions> </link> 

i'm no familiar c#. there anyway this?

please see 2 posts below
https://msdn.microsoft.com/en-us/library/jj715718.aspx
https://msdn.microsoft.com/en-us/library/13b90fz7(v=vs.120).aspx

right click project -> property -> build tab enter image description here

you can explicitly specify warning hide or lower warning level that.


Popular posts from this blog