|
9 | 9 | </PropertyGroup> |
10 | 10 |
|
11 | 11 | <ItemGroup Condition="$(SolutionName)==PizzaBot"> |
12 | | - <PackageReference Include="BotSharp.Core.Rules" /> |
13 | | - <PackageReference Include="BotSharp.Core.Crontab" /> |
14 | | - <PackageReference Include="BotSharp.Core.SideCar" /> |
15 | | - <PackageReference Include="BotSharp.Core.Realtime" /> |
16 | 12 | <PackageReference Include="BotSharp.Logger" /> |
17 | 13 | <PackageReference Include="BotSharp.OpenAPI" /> |
| 14 | + <PackageReference Include="BotSharp.Core.Realtime" /> |
18 | 15 | <PackageReference Include="BotSharp.Plugin.Dashboard" /> |
19 | | - <PackageReference Include="BotSharp.Plugin.GoogleAI" /> |
20 | | - <PackageReference Include="BotSharp.Plugin.MongoStorage" /> |
21 | | - <PackageReference Include="BotSharp.Plugin.OpenAI" /> |
22 | 16 | <PackageReference Include="BotSharp.Plugin.AzureOpenAI" /> |
23 | | - <PackageReference Include="BotSharp.Plugin.SparkDesk" /> |
24 | | - <PackageReference Include="BotSharp.Plugin.DeepSeekAI" /> |
25 | | - <PackageReference Include="BotSharp.Plugin.ChatbotUI" /> |
| 17 | + <PackageReference Include="BotSharp.Plugin.GoogleAI" /> |
26 | 18 | <PackageReference Include="BotSharp.Plugin.HuggingFace" /> |
27 | 19 | <PackageReference Include="BotSharp.Plugin.KnowledgeBase" /> |
28 | | - <PackageReference Include="BotSharp.Plugin.Graph" /> |
29 | 20 | <PackageReference Include="BotSharp.Plugin.MetaAI" /> |
30 | | - <PackageReference Include="BotSharp.Plugin.MetaMessenger" /> |
31 | | - <PackageReference Include="BotSharp.Plugin.Qdrant" /> |
32 | | - <PackageReference Include="BotSharp.Plugin.RoutingSpeeder" /> |
33 | | - <PackageReference Include="BotSharp.Plugin.WeChat" /> |
34 | | - <PackageReference Include="BotSharp.Plugin.SemanticKernel" /> |
35 | | - <PackageReference Include="BotSharp.Plugin.Twilio" /> |
36 | | - <PackageReference Include="BotSharp.Plugin.TelegramBots" /> |
37 | | - <PackageReference Include="BotSharp.Plugin.ChatHub" /> |
38 | 21 | <PackageReference Include="BotSharp.Plugin.LLamaSharp" /> |
39 | | - <PackageReference Include="BotSharp.Plugin.SqlDriver" /> |
40 | | - <PackageReference Include="BotSharp.Plugin.WebDriver" /> |
41 | | - <PackageReference Include="BotSharp.Plugin.AnthropicAI" /> |
42 | | - <PackageReference Include="BotSharp.Plugin.HttpHandler" /> |
43 | | - <PackageReference Include="BotSharp.Plugin.FileHandler" /> |
44 | | - <PackageReference Include="BotSharp.Plugin.EmailHandler" /> |
45 | | - <PackageReference Include="BotSharp.Plugin.AudioHandler" /> |
46 | | - <PackageReference Include="BotSharp.Plugin.MetaGLM" /> |
47 | | - <PackageReference Include="BotSharp.Plugin.Planner" /> |
48 | | - <PackageReference Include="BotSharp.Plugin.TencentCos" /> |
| 22 | + <PackageReference Include="BotSharp.Plugin.ChatHub" /> |
49 | 23 | </ItemGroup> |
50 | 24 |
|
51 | 25 | <Target Name="CombinedNugetPackage" BeforeTargets="PrepareForRun" Condition="$(SolutionName)=='PizzaBot'"> |
52 | 26 | <ItemGroup> |
53 | 27 | <CoreContentFiles Include="$(NuGetPackageRoot)botsharp.core\$(BotSharpVersion)\content\data\**\*.*" /> |
54 | | - <CoreCrontabContentFiles Include="$(NuGetPackageRoot)botsharp.core.crontab\$(BotSharpVersion)\content\data\**\*.*" /> |
55 | | - <FileHandlerContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.filehandler\$(BotSharpVersion)\content\data\**\*.*" /> |
56 | | - <KnowledgeBaseContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.knowledgebase\$(BotSharpVersion)\content\data\**\*.*" /> |
57 | | - <PlannerContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.planner\$(BotSharpVersion)\content\data\**\*.*" /> |
58 | | - <SqlDriverContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.sqldriver\$(BotSharpVersion)\content\data\**\*.*" /> |
59 | | - <RulesContentFiles Include="$(NuGetPackageRoot)botsharp.core.rules\$(BotSharpVersion)\content\data\**\*.*" /> |
60 | | - <HttpHandlerContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.httphandler\$(BotSharpVersion)\content\data\**\*.*" /> |
61 | | - <WebDriverContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.webdriver\$(BotSharpVersion)\content\data\**\*.*" /> |
62 | 28 | </ItemGroup> |
63 | 29 |
|
64 | 30 | <Copy SourceFiles="@(CoreContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
65 | | - <Copy SourceFiles="@(CoreCrontabContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
66 | | - <Copy SourceFiles="@(FileHandlerContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
67 | | - <Copy SourceFiles="@(KnowledgeBaseContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
68 | | - <Copy SourceFiles="@(PlannerContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
69 | | - <Copy SourceFiles="@(SqlDriverContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
70 | | - <Copy SourceFiles="@(RulesContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
71 | | - <Copy SourceFiles="@(HttpHandlerContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
72 | | - <Copy SourceFiles="@(WebDriverContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" /> |
73 | 31 | </Target> |
74 | 32 | <ItemGroup> |
75 | 33 | <PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" /> |
|
0 commit comments