mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
2c000b032d
* Update providers to use Microsoft.Extensions.Compliance.Redaction * Fix formatting. * Fix readme
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<VersionSuffix>preview</VersionSuffix>
|
|
<NoWarn>$(NoWarn);OPENAI001</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<InjectSharedThrow>true</InjectSharedThrow>
|
|
<InjectSharedDiagnosticIds>true</InjectSharedDiagnosticIds>
|
|
<InjectSharedRedaction>true</InjectSharedRedaction>
|
|
<InjectExperimentalAttributeOnLegacy>true</InjectExperimentalAttributeOnLegacy>
|
|
<InjectTrimAttributesOnLegacy>true</InjectTrimAttributesOnLegacy>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Agents.AI.Abstractions\Microsoft.Agents.AI.Abstractions.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.Projects" />
|
|
<PackageReference Include="Microsoft.Extensions.Compliance.Abstractions" />
|
|
<PackageReference Include="OpenAI" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- NuGet Package Settings -->
|
|
<Title>Microsoft Agent Framework - Azure AI Foundry Memory integration</Title>
|
|
<Description>Provides Azure AI Foundry Memory integration for Microsoft Agent Framework.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.FoundryMemory.UnitTests" />
|
|
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|