mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
6c32e869dd
* Updated package versions for RC release * Resolved comment * Resolved comments
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsReleaseCandidate>true</IsReleaseCandidate>
|
|
<NoWarn>$(NoWarn);MEAI001;OPENAI001</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<InjectSharedThrow>true</InjectSharedThrow>
|
|
<InjectIsExternalInitOnLegacy>true</InjectIsExternalInitOnLegacy>
|
|
<InjectTrimAttributesOnLegacy>true</InjectTrimAttributesOnLegacy>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
|
|
|
|
<PropertyGroup>
|
|
<!-- NuGet Package Settings -->
|
|
<Title>Microsoft Agent Framework Declarative Workflows Azure AI</Title>
|
|
<Description>Provides Microsoft Agent Framework support for declarative workflows for Azure AI Agents.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.Identity" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Agents.AI.AzureAI\Microsoft.Agents.AI.AzureAI.csproj" />
|
|
<ProjectReference Include="..\Microsoft.Agents.AI.Workflows.Declarative\Microsoft.Agents.AI.Workflows.Declarative.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.Workflows.Declarative.UnitTests" />
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests" />
|
|
</ItemGroup>
|
|
</Project>
|