77 lines
3.8 KiB
XML
77 lines
3.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>GettingStartedWithAgents</AssemblyName>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
<RootNamespace></RootNamespace>
|
|
<!-- Suppress: "Declare types in namespaces", "Require ConfigureAwait", "Experimental" -->
|
|
<NoWarn>$(NoWarn);NU1008;CS8618,IDE0009,IDE1006,CA1051,CA1050,CA1707,CA1054,CA2007,VSTHRD111,CS1591,RCS1110,RCS1243,CA5394,SKEXP0001,SKEXP0010,SKEXP0040,SKEXP0050,SKEXP0060,SKEXP0101,SKEXP0110,OPENAI001</NoWarn>
|
|
<OutputType>Library</OutputType>
|
|
<UserSecretsId>5ee045b0-aea3-4f08-8d31-32d1a6f8fed0</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.Projects" />
|
|
<PackageReference Include="Azure.Identity" />
|
|
<PackageReference Include="Azure.Monitor.OpenTelemetry.Exporter" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" />
|
|
<PackageReference Include="Microsoft.Extensions.Http.Resilience" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
|
|
<PackageReference Include="OpenTelemetry.Exporter.Console" />
|
|
<PackageReference Include="coverlet.collector" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
<PackageReference Include="xunit" />
|
|
<PackageReference Include="xunit.abstractions" />
|
|
<PackageReference Include="xunit.runner.visualstudio" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<IncludeAgentUtilities>true</IncludeAgentUtilities>
|
|
</PropertyGroup>
|
|
<Import Project="$(RepoRoot)/dotnet/src/InternalUtilities/samples/SamplesInternalUtilities.props" />
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Agents\A2A\Agents.A2A.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\AzureAI\Agents.AzureAI.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\Bedrock\Agents.Bedrock.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\Copilot\Agents.CopilotStudio.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\Core\Agents.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\OpenAI\Agents.OpenAI.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\Orchestration\Agents.Orchestration.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\Magentic\Agents.Magentic.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\Runtime\InProcess\Runtime.InProcess.csproj" />
|
|
<ProjectReference Include="..\..\src\Agents\Yaml\Agents.Yaml.csproj" />
|
|
<ProjectReference Include="..\..\src\Connectors\Connectors.AzureOpenAI\Connectors.AzureOpenAI.csproj" />
|
|
<ProjectReference Include="..\..\src\SemanticKernel.Abstractions\SemanticKernel.Abstractions.csproj" />
|
|
<ProjectReference Include="..\..\src\SemanticKernel.Core\SemanticKernel.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\Functions\Functions.Yaml\Functions.Yaml.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
<Using Include="Xunit.Abstractions" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Resources\*" />
|
|
</ItemGroup>
|
|
|
|
</Project> |