mirror of
https://github.com/microsoft/autogen.git
synced 2026-01-07 20:50:17 +00:00
rename the main classes and mixup folder structure move some tings from samples into core cleanup cross-deps cleanup grpc deps
25 lines
799 B
XML
25 lines
799 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackageId>AutoGen.Worker.Server</PackageId>
|
|
<PackageProjectUrl>https://github.com/microsoft/agnext</PackageProjectUrl>
|
|
<Authors>Microsoft</Authors>
|
|
<Description>AutoGen Worker Server Library</Description>
|
|
<Tags>ai-agents;event-driven-agents</Tags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Microsoft.AutoGen.Agents/Microsoft.AutoGen.Agents.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Orleans.Serialization.Protobuf" />
|
|
<PackageReference Include="Microsoft.Orleans.Server" />
|
|
<PackageReference Include="Microsoft.Orleans.Streaming" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|