2025-01-24 19:24:00 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-09-17 09:01:49 -04:00
|
|
|
|
|
2023-10-26 22:09:18 +02:00
|
|
|
|
<PropertyGroup>
|
2024-11-19 11:00:48 -08:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-10-26 22:09:18 +02:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-09-17 09:01:49 -04:00
|
|
|
|
<PackageReference Include="Azure.AI.OpenAI" />
|
2025-01-24 19:24:00 -08:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.AI" />
|
2024-06-19 16:53:37 -07:00
|
|
|
|
<PackageReference Include="Octokit.Webhooks.AspNetCore" />
|
|
|
|
|
<PackageReference Include="Octokit" />
|
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Azure" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http.Resilience" />
|
|
|
|
|
<PackageReference Include="Azure.ResourceManager.ContainerInstance" />
|
|
|
|
|
<PackageReference Include="Azure.Storage.Files.Shares" />
|
|
|
|
|
<PackageReference Include="Azure.Data.Tables" />
|
|
|
|
|
<PackageReference Include="Azure.Identity" />
|
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
|
2025-01-24 19:24:00 -08:00
|
|
|
|
<PackageReference Include="Google.Protobuf" />
|
|
|
|
|
<PackageReference Include="Grpc.Tools" PrivateAssets="All" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Core.Grpc\Microsoft.AutoGen.Core.Grpc.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Core\Microsoft.AutoGen.Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DevTeam.ServiceDefaults\DevTeam.ServiceDefaults.csproj" />
|
2023-10-26 22:09:18 +02:00
|
|
|
|
</ItemGroup>
|
2024-06-14 11:53:19 -07:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-01-24 19:24:00 -08:00
|
|
|
|
<Protobuf Include="..\Protos\messages.proto" Link="Protos\messages.proto" />
|
|
|
|
|
<Protobuf Include="..\Protos\states.proto" Link="Protos\states.proto" />
|
2024-06-14 11:53:19 -07:00
|
|
|
|
</ItemGroup>
|
2023-10-26 22:09:18 +02:00
|
|
|
|
|
|
|
|
|
</Project>
|