mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-05 15:22:52 +00:00

* renaming package * update folder name to match extension structure * more renaming and adding tags * fix header --------- Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
19 lines
699 B
XML
19 lines
699 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="../../../src/Microsoft.AutoGen/Agents/Microsoft.AutoGen.Agents.csproj" />
|
|
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Extensions\Aspire\Microsoft.AutoGen.Extensions.Aspire.csproj" />
|
|
<ProjectReference Include="..\DevTeam.Shared\DevTeam.Shared.csproj" />
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Extensions\SemanticKernel\Microsoft.AutoGen.Extensions.SemanticKernel.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|