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
57 lines
2.0 KiB
XML
57 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsReleaseCandidate>true</IsReleaseCandidate>
|
|
<NoWarn>$(NoWarn);MEAI001</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 Workflows</Title>
|
|
<Description>Provides Microsoft Agent Framework support for workflows.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Agents.AI.Abstractions\Microsoft.Agents.AI.Abstractions.csproj" />
|
|
<ProjectReference Include="..\Microsoft.Agents.AI\Microsoft.Agents.AI.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.Workflows.UnitTests" />
|
|
<InternalsVisibleTo Include="Microsoft.Agents.AI.Workflows.Generators.UnitTests" />
|
|
</ItemGroup>
|
|
|
|
<!-- Include source generator -->
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Agents.AI.Workflows.Generators\Microsoft.Agents.AI.Workflows.Generators.csproj"
|
|
OutputItemType="Analyzer"
|
|
ReferenceOutputAssembly="false"
|
|
GlobalPropertiesToRemove="TargetFramework" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="OpenTelemetry.Api" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
|
<PackageReference Include="System.Text.Json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'">
|
|
<PackageReference Include="Microsoft.Bcl.HashCode" />
|
|
<PackageReference Include="System.Text.Json" />
|
|
<PackageReference Include="System.Threading.Channels" />
|
|
<PackageReference Include="System.Threading.Tasks.Extensions" />
|
|
<PackageReference Include="System.Diagnostics.DiagnosticSource" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|