forked from microsoft/WindowsAppSDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ApiScan.Cpp.props
20 lines (20 loc) · 1.02 KB
/
ApiScan.Cpp.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE in the project root for license information. -->
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- These settings are needed for Release builds for API scanning tools. -->
<ItemDefinitionGroup Condition="'$(Configuration)' == 'Release'">
<ClCompile>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<StringPooling>true</StringPooling>
<FunctionLevelLinking>true</FunctionLevelLinking>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<LinkIncremental>false</LinkIncremental>
<FixedBaseAddress>false</FixedBaseAddress>
<AdditionalOptions>%(AdditionalOptions) /debugtype:cv,fixup</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
</Project>