mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-31 04:42:09 +00:00
21 lines
667 B
XML
21 lines
667 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>enable</Nullable>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\..\..\src\Microsoft.AI.Agents.Worker.Server\Microsoft.AI.Agents.Worker.Server.csproj" />
|
||
|
<ProjectReference Include="..\Greeter.ServiceDefaults\Greeter.ServiceDefaults.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Aspire.Azure.AI.OpenAI" />
|
||
|
<PackageReference Include="Microsoft.Orleans.Server" />
|
||
|
<PackageReference Include="Microsoft.Orleans.Reminders" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|