-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Connectors.Onnx.csproj
29 lines (23 loc) · 1.18 KB
/
Connectors.Onnx.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- THIS PROPERTY GROUP MUST COME FIRST -->
<AssemblyName>Microsoft.SemanticKernel.Connectors.Onnx</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
<TargetFramework>net6.0</TargetFramework> <!-- TODO: Support netstandard2.0 once replacement for FastBertTokenizer available -->
<VersionSuffix>alpha</VersionSuffix>
</PropertyGroup>
<!-- IMPORT NUGET PACKAGE SHARED PROPERTIES -->
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
<Import Project="$(RepoRoot)/dotnet/src/InternalUtilities/src/InternalUtilities.props" />
<PropertyGroup>
<Title>Semantic Kernel - ONNX Connectors</Title>
<Description>Semantic Kernel connectors for the ONNX runtime. Contains clients for text embedding generation.</Description>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\SemanticKernel.Core\SemanticKernel.Core.csproj" />
<PackageReference Include="System.Text.Json" />
<PackageReference Include="FastBertTokenizer" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" />
<PackageReference Include="System.Numerics.Tensors" />
</ItemGroup>
</Project>