msbuild: set C standard to C17

not required but it seems nice
This commit is contained in:
Shawn Hoffman 2022-07-23 22:11:12 -07:00
parent c3b64012d1
commit b2f8456710
1 changed files with 2 additions and 0 deletions

View File

@ -104,6 +104,8 @@
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<FunctionLevelLinking>true</FunctionLevelLinking>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<!--This doesn't seem required but nice to be future-proof-->
<LanguageStandard_C>stdc17</LanguageStandard_C>
<!--Enable latest C++ standard-->
<LanguageStandard>stdcpplatest</LanguageStandard>
<!--Enable Standard Conformance-->