File tree 2 files changed +22
-0
lines changed
src/SemanticKernel.DashScope
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 5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
<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 >
8
16
</PropertyGroup >
9
17
10
18
<ItemGroup >
16
24
<PackageReference Include =" Sdcb.DashScope" Version =" 1.0.1" />
17
25
</ItemGroup >
18
26
27
+ <ItemGroup >
28
+ <None Include =" ../../README.md" Pack =" true" PackagePath =" \" />
29
+ </ItemGroup >
30
+
19
31
</Project >
You can’t perform that action at this time.
0 commit comments