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.Backend.csproj 1.7 kB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  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. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Azure.AI.OpenAI" />
  12. <PackageReference Include="Octokit.Webhooks.AspNetCore" />
  13. <PackageReference Include="Octokit" />
  14. <PackageReference Include="Microsoft.SemanticKernel" />
  15. <PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" />
  16. <PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" />
  17. <PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" />
  18. <PackageReference Include="Swashbuckle.AspNetCore" />
  19. <PackageReference Include="Microsoft.Extensions.Azure" />
  20. <PackageReference Include="Microsoft.Extensions.Http.Resilience" />
  21. <PackageReference Include="Azure.ResourceManager.ContainerInstance" />
  22. <PackageReference Include="Azure.Storage.Files.Shares" />
  23. <PackageReference Include="Azure.Data.Tables" />
  24. <PackageReference Include="Azure.Identity" />
  25. <PackageReference Include="System.IdentityModel.Tokens.Jwt" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\DevTeam.ServiceDefaults\DevTeam.ServiceDefaults.csproj" />
  29. <ProjectReference Include="..\DevTeam.Shared\DevTeam.Shared.csproj" />
  30. <ProjectReference Include="..\..\..\src\Microsoft.AutoGen.Agents.Extensions\SemanticKernel\Microsoft.AutoGen.Agents.Extensions.SemanticKernel.csproj" />
  31. </ItemGroup>
  32. </Project>