2024-11-18 13:32:49 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-10-23 14:23:36 -07:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-11-19 11:00:48 -08:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-10-23 14:23:36 -07:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
2024-11-25 13:37:35 -08:00
|
|
|
<ItemGroup>
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
2024-11-01 15:43:20 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-01-28 17:13:36 -05:00
|
|
|
<PackageReference Include="Google.Protobuf" />
|
|
|
|
<PackageReference Include="Grpc.Tools" PrivateAssets="All" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-12-13 11:55:43 -08:00
|
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Contracts\Microsoft.AutoGen.Contracts.csproj" />
|
2025-02-12 18:37:42 -05:00
|
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Core.Grpc\Microsoft.AutoGen.Core.Grpc.csproj" />
|
2024-12-13 11:55:43 -08:00
|
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Core\Microsoft.AutoGen.Core.csproj" />
|
2024-11-01 15:43:20 -07:00
|
|
|
</ItemGroup>
|
2025-01-28 17:13:36 -05:00
|
|
|
|
|
|
|
<ItemGroup>
|
2025-02-12 18:37:42 -05:00
|
|
|
<Protobuf Include="..\..\..\src\Microsoft.AutoGen\Agents\protos\agent_events.proto" Link="protos\agent_events.proto" />
|
2025-01-28 17:13:36 -05:00
|
|
|
</ItemGroup>
|
2024-10-23 14:23:36 -07:00
|
|
|
</Project>
|