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
1005 B
XML
26 lines
1005 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>{F28F10A9-540F-4FC9-AD81-79E79F3FC73D}</ProjectGuid>
|
|
<TargetName>rsa_test</TargetName>
|
|
</PropertyGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="..\..\mk\WindowsTest.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="Configuration">
|
|
<OutDir>$(OutRootDir)test\ring\crypto\rsa\</OutDir>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="rsa_test.cc" />
|
|
</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>
|