mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
* added the x64 condition in the targets file * need the reference node for managed dll * address review comments * fix the dll path * added back Link
20 lines
937 B
XML
20 lines
937 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<ItemGroup Condition="Exists('packages.config') OR
|
|
Exists('$(MSBuildProjectName).packages.config') OR
|
|
Exists('packages.$(MSBuildProjectName).config')">
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win10-x64\native\onnxruntime.dll"
|
|
Condition="'$(PlatformTarget)' == 'x64'">
|
|
<Link>onnxruntime.dll</Link>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Visible>false</Visible>
|
|
</None>
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win10-x64\native\mkldnn.dll"
|
|
Condition="'$(PlatformTarget)' == 'x64'">
|
|
<Link>mkldnn.dll</Link>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Visible>false</Visible>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|