I have a legacy project in my solution without comments and many warnings. I want to not see warnings about this specific project but I want to see warnings of the other pro
For details on the different warning levels see:
C# Compiler Options > /warn (Specify Warning Level)
Open the Properties of the project and go to the Build page.
Here you will find the Error & Warnings input box
Put the warning number to hide in the input box without the first two letters
If you have more than one warning separate them with colon or semi-colon
(Sorry if labels are not precise, I'm translating from another language VS)
Each project in Visual Studio has a "treat warnings as errors" option. Go through each of your projects and change that setting:
Open project properties. Build > Errors and warnings > Warning level
Select 0
warning level.
Details you can read here.