How would I suppress all warnings (or at least as many as possible since those prefixed with MSB cannot be suppressed How to suppress specific MSBuild warning)?
相关问题
- Visual Studio 2019 - error MSB8020: The build tool
- softlinks atime and mtime modification
- Get unexpanded argument from bash command line
- Include and Execute EXE in C# Command Line App
- Batch - Set variables in for loop
相关文章
- Build errors of missing packages in Visual Studio
- Compile and build with single command line Java (L
- Copy different file to output directory for releas
- How to update command line output?
- How to execute another python script from your scr
- Why doesn't AutogenerateBindingRedirects work
- MSBuild - How to build multiple files AND projects
- Visual Studio Solution — Any way to create a “spec
The best way is to fix the issues that are causing the warnings.
If you must ignore the warnings (e.g. you have inherited a project with so many that you can't see the wood for the trees), you could try changing the WarningLevel property, http://msdn.microsoft.com/en-us/library/13b90fz7.aspx
msbuild /clp:ErrorsOnly
If you would like to suppress MSB3270 only then you can set in project file just