16 lines
604 B
XML
16 lines
604 B
XML
<!-- Targets for making .vcxproj better. -->
|
|
<Project>
|
|
|
|
<PropertyGroup>
|
|
<SignOutput Condition=" '$(SignType)' != '' ">true</SignOutput>
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<!-- This maps the common MSBuild property name to equivalent C++ project properties. -->
|
|
<IntDir>$(IntermediateOutputPath)</IntDir>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="MicroBuild.Plugin.props" Condition="'$(MicroBuildSentinelFile)' == ''" />
|
|
<Import Project="$(MicroBuildPluginDirectory)\MicroBuild.Plugins.*\**\build\MicroBuild.Plugins.*.props" Condition=" '$(MicroBuildPluginDirectory)' != ''" />
|
|
|
|
</Project>
|