mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
5ac864dfd9
Co-authored-by: alliscode <bentho@microsoft.com>
79 lines
3.9 KiB
XML
79 lines
3.9 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<!-- Central version prefix - applies to all nuget packages. -->
|
|
<VersionPrefix>1.6.2</VersionPrefix>
|
|
<RCNumber>1</RCNumber>
|
|
<DateSuffix>260521</DateSuffix>
|
|
<PackageVersion Condition="'$(IsReleaseCandidate)' == 'true'">$(VersionPrefix)-rc$(RCNumber)</PackageVersion>
|
|
<PackageVersion Condition="'$(IsReleaseCandidate)' != 'true' AND '$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix).$(DateSuffix).1</PackageVersion>
|
|
<PackageVersion Condition="'$(IsReleaseCandidate)' != 'true' AND '$(VersionSuffix)' == ''">$(VersionPrefix)-preview.$(DateSuffix).1</PackageVersion>
|
|
<PackageVersion Condition="'$(IsReleased)' == 'true'">$(VersionPrefix)</PackageVersion>
|
|
<GitTag>1.6.2</GitTag>
|
|
|
|
<Configurations>Debug;Release;Publish</Configurations>
|
|
<IsPackable>true</IsPackable>
|
|
|
|
<!-- Package validation. Baseline Version should be the latest version available on NuGet. -->
|
|
<PackageValidationBaselineVersion>1.0.0</PackageValidationBaselineVersion>
|
|
<!-- Enable validation for GA packages -->
|
|
<EnablePackageValidation Condition="'$(IsReleased)' == 'true'">true</EnablePackageValidation>
|
|
<!-- Validate assembly attributes only for Publish builds -->
|
|
<NoWarn Condition="'$(Configuration)' != 'Publish'">$(NoWarn);CP0003</NoWarn>
|
|
<!-- Do not validate reference assemblies -->
|
|
<NoWarn>$(NoWarn);CP1002</NoWarn>
|
|
|
|
<!-- Enable NuGet package auditing -->
|
|
<NuGetAudit>true</NuGetAudit>
|
|
|
|
<!-- Audit direct and transitive packages -->
|
|
<NuGetAuditMode>all</NuGetAuditMode>
|
|
|
|
<!-- Report low, moderate, high and critical advisories -->
|
|
<NuGetAuditLevel>low</NuGetAuditLevel>
|
|
|
|
|
|
<!-- Default description and tags. Packages can override. -->
|
|
<Authors>Microsoft</Authors>
|
|
<Company>Microsoft</Company>
|
|
<Product>Microsoft Agent Framework</Product>
|
|
<Description>Microsoft Agent Framework is a comprehensive .NET library for building, orchestrating, and deploying AI agents and multi-agent workflows. The framework provides everything from simple chat agents to complex multi-agent systems with graph-based orchestration capabilities.</Description>
|
|
<PackageTags>AI, Artificial Intelligence, Agent, SDK, Framework</PackageTags>
|
|
<PackageId>$(AssemblyName)</PackageId>
|
|
|
|
<!-- Required license, copyright, and repo information. Packages can override. -->
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
|
|
<PackageProjectUrl>https://learn.microsoft.com/agent-framework/</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/microsoft/agent-framework</RepositoryUrl>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
<!-- Use icon and NUGET readme from dotnet/nuget folder -->
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<PackageIconUrl>icon.png</PackageIconUrl>
|
|
<PackageReadmeFile>NUGET.md</PackageReadmeFile>
|
|
|
|
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
<!-- Include the XML documentation file in the NuGet package. -->
|
|
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- SourceLink allows step-through debugging for source hosted on GitHub. -->
|
|
<!-- https://github.com/dotnet/sourcelink -->
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Include icon.png and NUGET.md in the project. -->
|
|
<None Include="$(RepoRoot)/dotnet/nuget/icon.png" Link="icon.png" Pack="true" PackagePath="." />
|
|
<None Include="$(RepoRoot)/dotnet/nuget/NUGET.md" Link="NUGET.md" Pack="true" PackagePath="." />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
</Project>
|