You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

DevTeam.Shared.csproj 973 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <ItemGroup>
  3. <ProjectReference Include="..\..\..\src\Microsoft.AutoGen.Agents.Worker.Client\Microsoft.AutoGen.Agents.Worker.Client.csproj" />
  4. </ItemGroup>
  5. <PropertyGroup>
  6. <TargetFramework>net8.0</TargetFramework>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <Nullable>enable</Nullable>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Azure.AI.OpenAI" />
  12. <PackageReference Include="Microsoft.SemanticKernel" />
  13. <PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" />
  14. <PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" />
  15. <PackageReference Include="Google.Protobuf" />
  16. <PackageReference Include="Grpc.Tools" PrivateAssets="All" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Protobuf Include="..\Protos\messages.proto" Link="Protos\messages.proto" />
  20. <Protobuf Include="..\Protos\states.proto" Link="Protos\states.proto" />
  21. </ItemGroup>
  22. </Project>