msbuild was complaining that with warning MSB8012 that |TargetPath| does not match the Linker's OutputFile property value. The problem was caused by the wrong ordering of the setting of build properties and the inclusion of the built-in property sheets.
26 lines
1001 B
XML
26 lines
1001 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{5C80997F-DB68-4996-BF6D-2B0EAF69D035}</ProjectGuid>
|
|
<TargetName>refcount_test</TargetName>
|
|
</PropertyGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="..\mk\WindowsTest.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="Configuration">
|
|
<OutDir>$(OutRootDir)test\ring\crypto\</OutDir>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="refcount_test.c" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="libring.Windows.vcxproj">
|
|
<Project>{f4c0a1b6-5e09-41c8-8242-3e1f6762fb18}</Project>
|
|
</ProjectReference>
|
|
<ProjectReference Include="test\test.Windows.vcxproj">
|
|
<Project>{1dace503-6498-492d-b1ff-f9ee18624443}</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
</Project>
|