mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-06 16:41:30 +00:00
18 lines
786 B
XML
18 lines
786 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>$(TestTargetFramework)</TargetFramework>
|
|||
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|||
|
<NoWarn>$(NoWarn);CS8981;CS8600;CS8602;CS8604;CS8618;CS0219;SKEXP0054;SKEXP0050;SKEXP0110</NoWarn>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|||
|
<ProjectReference Include="..\AutoGen.BasicSamples\AutoGen.BasicSample.csproj" />
|
|||
|
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Web" Version="$(SemanticKernelExperimentalVersion)" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|