mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-23 08:02:05 +00:00

rename the main classes and mixup folder structure move some tings from samples into core cleanup cross-deps cleanup grpc deps
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.OpenAI" />
|
|
<PackageReference Include="Microsoft.SemanticKernel" />
|
|
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" />
|
|
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" />
|
|
<PackageReference Include="Google.Protobuf" />
|
|
<PackageReference Include="Grpc.Tools" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Agents\Protos\messages.proto" Link="Protos\messages.proto" />
|
|
<Protobuf Include="Agents\Protos\states.proto" Link="Protos\states.proto" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="../../../src/Microsoft.AutoGen.Agents.Client/Microsoft.AutoGen.Agents.Client.csproj" />
|
|
|
|
<ProjectReference Include="..\HelloAgents.ServiceDefaults\HelloAgents.ServiceDefaults.csproj" />
|
|
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen.Agents\Microsoft.AutoGen.Agents.csproj" />
|
|
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen.Agents.Extensions\SemanticKernel\Microsoft.AutoGen.Agents.Extensions.SemanticKernel.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|