Reputation: 2499
Is there a way that I can hide certain warnings during a build in Xamarin Studio? I have deliberately included certain class members in my solution that are deprecated and I am tired of being reminded every single time I compile.
Upvotes: 6
Views: 4441
Reputation: 4879
To see the Warning Code, click in Errors
in the bottom right corner and in the end of the line of each warning you'll see it.
Upvotes: -1
Reputation: 19335
Right-click your project -> Options -> Build/Compiler and either adjust the warning level or list the warnings you don't want to be told about in the "Ignore warnings" text box.
Upvotes: 8