move .proto generator to Microsoft.AI.Agents (#391)

This commit is contained in:
Xiaoyun Zhang 2024-08-22 08:52:35 -07:00 committed by GitHub
parent 494b805080
commit 519c981efa
3 changed files with 11 additions and 20 deletions

View File

@ -11,22 +11,8 @@
<Tags>ai-agents;event-driven-agents</Tags>
</PropertyGroup>
<ItemGroup>
<Protobuf Include="..\..\..\protos\agent_worker.proto" GrpcServices="Client" Link="Protos\agent_worker.proto" />
<Compile Include="..\Shared\RpcEventExtensions.cs" Link="RpcEventExtensions.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.AI.Agents\Microsoft.AI.Agents.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" />
<PackageReference Include="Grpc.Net.ClientFactory" />
<PackageReference Include="Grpc.Tools">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>

View File

@ -11,17 +11,11 @@
<Tags>ai-agents;event-driven-agents</Tags>
</PropertyGroup>
<ItemGroup>
<Protobuf Include="..\..\..\protos\agent_worker.proto" GrpcServices="Server" Link="Protos\agent_worker.proto" />
<Compile Include="..\Shared\RpcEventExtensions.cs" Link="RpcEventExtensions.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.AI.Agents\Microsoft.AI.Agents.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" />
<PackageReference Include="Microsoft.Orleans.Serialization.Protobuf" />
<PackageReference Include="Microsoft.Orleans.Server" />
<PackageReference Include="Microsoft.Orleans.Streaming" />

View File

@ -11,6 +11,17 @@
</PropertyGroup>
<ItemGroup>
<Protobuf Include="..\..\..\protos\agent_worker.proto" GrpcServices="Client;Server" Link="Protos\agent_worker.proto" />
<Compile Include="..\Shared\RpcEventExtensions.cs" Link="RpcEventExtensions.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" />
<PackageReference Include="Grpc.Net.ClientFactory" />
<PackageReference Include="Grpc.Tools">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.SemanticKernel" />
</ItemGroup>