-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSemanticKernel.DashScope.csproj
31 lines (27 loc) · 1.27 KB
/
SemanticKernel.DashScope.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
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Cnblogs.SemanticKernel.Connectors.DashScope</RootNamespace>
<AssemblyName>Cnblogs.SemanticKernel.Connectors.DashScope</AssemblyName>
<Description>Semantic Kernel Connector to Aliyun DashScope.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>AI;SemanticKernel;DashScope;Qwen</PackageTags>
<RepositoryUrl>https://github.com/cnblogs/semantic-kernel-dashscope</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>cnblogs.com</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>SKEXP0001</NoWarn>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Cnblogs.DashScope.Core" Version="0.4.0" />
<PackageReference Include="JsonSchema.Net.Generation" Version="4.5.1" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="1.24.1" />
</ItemGroup>
<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>