mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Update Aspire package to be preview * Also update readme file * Include README.md in pack
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(TargetFrameworksCore)</TargetFrameworks>
|
|
<VersionSuffix>preview</VersionSuffix>
|
|
<!-- Suppress analyzer warnings for Aspire integration code -->
|
|
<!-- IL2026/IL3050: Suppress trimming/AOT warnings - DevUI is a dev-only tool not intended for AOT -->
|
|
<NoWarn>$(NoWarn);CA1873;RCS1061;VSTHRD002;IL2026;IL3050</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
|
|
|
|
<PropertyGroup>
|
|
<!-- NuGet Package Settings -->
|
|
<Title>Microsoft Agent Framework DevUI for Aspire</Title>
|
|
<PackageTags>aspire integration hosting agent-framework devui ai agents</PackageTags>
|
|
<Description>Microsoft Agent Framework DevUI support for Aspire.</Description>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="Aspire.Hosting.AgentFramework.DevUI.UnitTests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspire.Hosting" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="/" />
|
|
</ItemGroup>
|
|
</Project>
|