mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
6dc65dbaa1
* Increase credential timeout for Integration Tests * Fix format error. * Update further tests * Fix comment * Rename credentials file and class. * Fix broken reference.
23 lines
909 B
XML
23 lines
909 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(TargetFrameworksCore)</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<InjectSharedIntegrationTestAzureCredentialsCode>True</InjectSharedIntegrationTestAzureCredentialsCode>
|
|
</PropertyGroup>
|
|
|
|
<!-- Public packages required by integration tests -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.OpenAI" />
|
|
<PackageReference Include="Microsoft.DurableTask.Client.AzureManaged" />
|
|
<PackageReference Include="Microsoft.DurableTask.Worker.AzureManaged" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Microsoft.Agents.AI.OpenAI\Microsoft.Agents.AI.OpenAI.csproj" />
|
|
<ProjectReference Include="..\..\src\Microsoft.Agents.AI.DurableTask\Microsoft.Agents.AI.DurableTask.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|