mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-13 17:25:02 -05:00
* interim stash * interim stash * interim checkpoint * broken stash * whoops * merge sln files * fix a bunch of refactoring errors * moving more to core vs samples * interim * fixup the devteam sample * fix ci * fixup soln file * trying to fix ci * trying to fix ci * adding back * still trying * recreate * next step * adding it back * trying to fix * Rename Autogen -> AutoGen (#567) * Add transparency faqs (#566) * remove Autogen * add AutoGen back --------- Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com> --------- Co-authored-by: Xiaoyun Zhang <xiaoyuz@microsoft.com> Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen.Agents.Worker.Client\Microsoft.AutoGen.Agents.Worker.Client.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.OpenAI" />
|
|
<PackageReference Include="Octokit.Webhooks.AspNetCore" />
|
|
<PackageReference Include="Octokit" />
|
|
<PackageReference Include="Microsoft.SemanticKernel" />
|
|
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" />
|
|
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" />
|
|
<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" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DevTeam.ServiceDefaults\DevTeam.ServiceDefaults.csproj" />
|
|
<ProjectReference Include="..\DevTeam.Shared\DevTeam.Shared.csproj" />
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen.Agents.Extensions\SemanticKernel\Microsoft.AutoGen.Agents.Extensions.SemanticKernel.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|