-
Notifications
You must be signed in to change notification settings - Fork 407
Expand file tree
/
Copy pathSampleApp.csproj
More file actions
26 lines (21 loc) · 833 Bytes
/
SampleApp.csproj
File metadata and controls
26 lines (21 loc) · 833 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Contoso.ML.OnnxRuntime.EP.Basic" Version="1.0.0" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.23.2" />
</ItemGroup>
<ItemGroup>
<Content Include="mul.onnx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<!-- Consume nuget package via project reference during development to get live code changes -->
<!-- <ItemGroup>
<ProjectReference Include="..\Contoso.ML.OnnxRuntime.EP.Basic\Contoso.ML.OnnxRuntime.EP.Basic.csproj" />
</ItemGroup> -->
</Project>