mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
* upgrade cswinrt and downgrade target framework * fix sdk version references * cswinrt 1.1.0 Co-authored-by: Sheil Kumar <sheilk@microsoft.com>
24 lines
702 B
ObjectPascal
24 lines
702 B
ObjectPascal
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5.0-windows10.0.17763.0</TargetFramework>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AI.MachineLearning" Version="[PackageVersion]" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\..\testdata\squeezenet.onnx">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<Visible>true</Visible>
|
|
</None>
|
|
<None Include="..\..\..\winml\test\collateral\images\kitten_224.png">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<Visible>true</Visible>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|