File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
src/SemanticKernel.DashScope Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ [ -z $1 ] && echo " Missing version" && exit 1
5+
6+ version=$1
7+ project=src/SemanticKernel.DashScope
8+ dotnet clean -c Release
9+ dotnet build -p:Version=${version-* } -c Release $project
10+ dotnet pack $project -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg --include-source -p:PackageVersion=$version -p:Version=${version-* } -o ./artifacts
Original file line number Diff line number Diff line change 55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
77 <RootNamespace >Cnblogs.SemanticKernel.Connectors.DashScope</RootNamespace >
8+ <AssemblyName >Cnblogs.SemanticKernel.Connectors.DashScope</AssemblyName >
9+ <Description >Semantic Kernel Connector to Aliyun DashScope.</Description >
10+ <PackageReadmeFile >README.md</PackageReadmeFile >
11+ <PackageTags >AI;SemanticKernel;DashScope;Qwen</PackageTags >
12+ <RepositoryUrl >https://github.com/cnblogs/semantic-kernel-dashscope</RepositoryUrl >
13+ <RepositoryType >git</RepositoryType >
14+ <PackageLicenseExpression >MIT</PackageLicenseExpression >
15+ <Authors >cnblogs.com</Authors >
816 </PropertyGroup >
917
1018 <ItemGroup >
1624 <PackageReference Include =" Sdcb.DashScope" Version =" 1.0.1" />
1725 </ItemGroup >
1826
27+ <ItemGroup >
28+ <None Include =" ../../README.md" Pack =" true" PackagePath =" \" />
29+ </ItemGroup >
30+
1931</Project >
You can’t perform that action at this time.
0 commit comments