mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-11 02:01:10 +00:00

* do it all :) * save implementation as it comes * add sandbox skill * generate files via the sandbox skill in output/src --------- Co-authored-by: Kosta Petan <kosta.petan@microsoft.com>
18 lines
559 B
XML
18 lines
559 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" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|