Jason Hartley
Jason Hartley

Reputation: 2499

Hide certain warnings in Xamarin Studio

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

Answers (2)

CIRCLE
CIRCLE

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. enter image description here

Upvotes: -1

Rolf Bjarne Kvinge
Rolf Bjarne Kvinge

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

Related Questions