21 lines
867 B
XML
21 lines
867 B
XML
<Project>
|
|
<!--
|
|
The development MSIX does not publish a symbol package. This keeps package
|
|
creation deterministic on machines without the optional VC++ UWP
|
|
mspdbcmf.exe component. Normal Debug/Release builds still produce PDBs.
|
|
-->
|
|
<PropertyGroup Condition="'$(GenerateAppxPackageOnBuild)' == 'true'">
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<DebugType>None</DebugType>
|
|
<AppxSymbolPackageEnabled>false</AppxSymbolPackageEnabled>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
Machine-local development runtime roots belong outside Git. The handoff
|
|
initializer writes this optional file after verifying the separately
|
|
delivered Cuts/Res bundle and its SHA-256 manifest.
|
|
-->
|
|
<Import Project="$(MSBuildThisFileDirectory)Directory.Build.local.props"
|
|
Condition="Exists('$(MSBuildThisFileDirectory)Directory.Build.local.props')" />
|
|
</Project>
|