Files
agent-framework/dotnet/tests/AzureAI.IntegrationTests/AzureAI.IntegrationTests.csproj
T
Roger Barreto 100a1e753e .NET: Add Conformance Integration Tests for AzureAI Package (#2237)
* Conformance tests added and passing

* Correct namespace

* Update Azure.AI.Project to latest public nuget version
2025-11-14 23:20:47 +00:00

19 lines
676 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(ProjectsTargetFrameworks)</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)' == 'Debug'">$(ProjectsDebugTargetFrameworks)</TargetFrameworks>
<InjectSharedIntegrationTestCode>True</InjectSharedIntegrationTestCode>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Microsoft.Agents.AI.AzureAI\Microsoft.Agents.AI.AzureAI.csproj" />
<ProjectReference Include="..\AgentConformance.IntegrationTests\AgentConformance.IntegrationTests.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
</ItemGroup>
</Project>