BaseApplication.props (1014B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup Label="UserMacros"> 4 <IntDir>$(SolutionDir)build\$(ProjectName)-$(Platform)-$(Configuration)\</IntDir> 5 <OutDir>$(SolutionDir)bin\$(Platform)\</OutDir> 6 <GenerateProjectSpecificOutputFolder>false</GenerateProjectSpecificOutputFolder> 7 8 <!-- Use MSVC suffix for MSVC builds, and remove the Clang suffix. --> 9 <TargetName Condition="$(Configuration.EndsWith(Clang))">$(ProjectName)-$(Platform)-$(Configuration.Replace("-Clang", ""))</TargetName> 10 <TargetName Condition="!$(Configuration.EndsWith(Clang))">$(ProjectName)-$(Platform)-$(Configuration)-MSVC</TargetName> 11 <ConfigurationType>Application</ConfigurationType> 12 </PropertyGroup> 13 14 <Import Project="Toolkit.props" /> 15 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 16 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 17 18 <Import Project="Base.props" /> 19 </Project>