-
Notifications
You must be signed in to change notification settings - Fork 324
Expand file tree
/
Copy pathWindowsMLSampleForWPF.csproj
More file actions
37 lines (30 loc) · 1.18 KB
/
Copy pathWindowsMLSampleForWPF.csproj
File metadata and controls
37 lines (30 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<WindowsPackageType>None</WindowsPackageType>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" />
<PackageReference Include="System.Numerics.Tensors" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Shared\cs\ArgumentParser.cs" />
<Compile Include="..\Shared\cs\ExecutionProviderManager.cs" />
<Compile Include="..\Shared\cs\ImageProcessor.cs" />
<Compile Include="..\Shared\cs\ModelManager.cs" />
<Compile Include="..\Shared\cs\InferenceEngine.cs" />
<Compile Include="..\Shared\cs\ResultProcessor.cs" />
<Compile Include="..\Shared\cs\PerformanceConfigurator.cs" />
</ItemGroup>
<!-- Include OpenVINO configuration files -->
<ItemGroup>
<Content Include="..\Shared\openvino_perf.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\Shared\openvino_efficiency.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="..\Resources\SqueezeNetModel.targets" />
</Project>