2020-08-05 20:02:24 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-05-01 07:56:36 +00:00
|
|
|
<TargetFramework>net5.0-windows10.0.17763.0</TargetFramework>
|
2020-08-05 20:02:24 +00:00
|
|
|
<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>
|