mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Update release versions * Fix versioning issue * Change ga wording to released * Update suppression file * Remove unecessary workflows suppression file * Remove another unnecessary suppression file. * Fix suppressions file
49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsReleased>true</IsReleased>
|
|
<NoWarn>$(NoWarn);MEAI001;MAAI001</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<InjectSharedThrow>true</InjectSharedThrow>
|
|
<InjectSharedDiagnosticIds>true</InjectSharedDiagnosticIds>
|
|
<InjectSharedRedaction>true</InjectSharedRedaction>
|
|
<InjectDiagnosticClassesOnLegacy>true</InjectDiagnosticClassesOnLegacy>
|
|
<InjectExperimentalAttributeOnLegacy>true</InjectExperimentalAttributeOnLegacy>
|
|
<InjectTrimAttributesOnLegacy>true</InjectTrimAttributesOnLegacy>
|
|
<InjectIsExternalInitOnLegacy>true</InjectIsExternalInitOnLegacy>
|
|
</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="Microsoft.Extensions.AI" />
|
|
<PackageReference Include="Microsoft.Extensions.Compliance.Abstractions" />
|
|
<PackageReference Include="Microsoft.Extensions.VectorData.Abstractions" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
|
|
<PackageReference Include="Microsoft.ML.Tokenizers" />
|
|
<PackageReference Include="System.Diagnostics.DiagnosticSource" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- NuGet Package Settings -->
|
|
<Title>Microsoft Agent Framework</Title>
|
|
<Description>Provides Microsoft Agent Framework core functionality.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
|
|
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.UnitTests" />
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.Declarative.UnitTests" />
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.Hosting.UnitTests" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|