Fix Visual Studio Warning Level Error: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Created page with "I will write this article later, please don't delete it")
 
No edit summary
Line 1: Line 1:
I will write this article later, please don't delete it
I will write this article later, please don't delete it
==What is it?==
Build the source 2013 SDK under Visual Studio 2013 If your Waring level is set too high, some negligible errors will be taken seriously by visual studio 2013 These errors can be ignored, but vs 2013 doesn't think so, if your Waring level is set to "level 3"(Default is level 3)
Visual studio will not let VPC continue to generate client.dll or server.dll when building
Although visual studio will generate all obj files in the project, it will still not call VPC to generate the final files we want. Because visual studio thinks these errors are serious and cannot be ignored。

Revision as of 02:17, 25 October 2019

I will write this article later, please don't delete it

What is it?

Build the source 2013 SDK under Visual Studio 2013 If your Waring level is set too high, some negligible errors will be taken seriously by visual studio 2013 These errors can be ignored, but vs 2013 doesn't think so, if your Waring level is set to "level 3"(Default is level 3) Visual studio will not let VPC continue to generate client.dll or server.dll when building Although visual studio will generate all obj files in the project, it will still not call VPC to generate the final files we want. Because visual studio thinks these errors are serious and cannot be ignored。