mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-19 21:32:23 +00:00
* Enable building winml with --build_nuget * Fix flake8 errors * semicolor Co-authored-by: Sheil Kumar <sheilk@microsoft.com>
14 lines
716 B
XML
14 lines
716 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Target Name="CopyMLBinaries" BeforeTargets="CoreBuild">
|
|
<PropertyGroup>
|
|
<WindowsAIBinplaceMessage>Binplacing WindowsAI binaries: {0} and {1}.</WindowsAIBinplaceMessage>
|
|
</PropertyGroup>
|
|
<Message Text="$([System.String]::Format('$(WindowsAIBinplaceMessage)', '$(WindowsAIBinary)', '$(OnnxRuntimeBinary)'))" />
|
|
<Copy SkipUnchangedFiles="True" SourceFiles="$(WindowsAIBinary);$(OnnxRuntimeBinary)" DestinationFolder="$(OutDir)" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<ReferenceCopyLocalPaths Include="$(WindowsAIBinary);$(OnnxRuntimeBinary)" />
|
|
</ItemGroup>
|
|
</Project>
|