mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-14 19:51:10 +00:00
19 lines
619 B
XML
19 lines
619 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<PublishAot>true</PublishAot>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
|
<PackageReference Include="Microsoft.SemanticKernel" Version="0.14.547.1-preview" />
|
|
<PackageReference Include="Testcontainers" Version="3.2.0" />
|
|
<ProjectReference Include="..\skills\skills.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|