-
Notifications
You must be signed in to change notification settings - Fork 0
/
common-c++.props
46 lines (46 loc) · 2.05 KB
/
common-c++.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<OutDir>$(SolutionDir)bin\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)obj\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
<CodeAnalysisRuleSet>$(SolutionDir)no-lifetime-rules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>true</RunCodeAnalysis>
<EnableCppCoreCheck>true</EnableCppCoreCheck>
<EnableExperimentalCppCoreCheck>true</EnableExperimentalCppCoreCheck>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<WarningLevel>EnableAllWarnings</WarningLevel>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup>
<ClCompile>
<DiagnosticsFormat>Caret</DiagnosticsFormat>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup>
<ClCompile>
<EnforceTypeConversionRules>true</EnforceTypeConversionRules>
<RuntimeTypeInfo>true</RuntimeTypeInfo>
<LanguageStandard>stdcpplatest</LanguageStandard>
<AdditionalOptions>/volatile:iso /Zc:strictStrings /Zc:throwingNew /Zc:externConstexpr /Zc:__cplusplus /utf-8 /validate-charset /experimental:external /external:anglebrackets /external:templates- /external:W0 %(AdditionalOptions)</AdditionalOptions>
<SDLCheck>true</SDLCheck>
<EnablePREfast>true</EnablePREfast>
<StringPooling>true</StringPooling>
<ControlFlowGuard>Guard</ControlFlowGuard>
<FunctionLevelLinking>true</FunctionLevelLinking>
<ObjectFileName>$(IntDir)%(RelativeDir)</ObjectFileName>
<ConformanceMode>true</ConformanceMode>
<AssemblerListingLocation>$(IntDir)%(RelativeDir)</AssemblerListingLocation>
<PrecompiledHeader>Use</PrecompiledHeader>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ClCompile>
<Link />
<Link>
<GenerateDebugInformation>DebugFull</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup />
</Project>