mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Align dotnet hosted agent samples with the Python side (PR #5281) by reorganizing the directory structure: - Remove HostedAgentsV1 entirely (old API pattern) - Split HostedAgentsV2 into invocations/ and responses/ based on protocol - Move Using-Samples accordingly (SimpleAgent to responses, SimpleInvocationsAgent to invocations) - Update slnx with new project paths and add previously missing invocations projects - Update README cd paths from HostedAgentsV2 to invocations or responses - Rename .env.local to .env.example to match Python naming convention - Fix format violations in newly included invocations projects
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net10.0</TargetFrameworks>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<CentralPackageTransitivePinningEnabled>false</CentralPackageTransitivePinningEnabled>
|
|
<RootNamespace>HostedLocalTools</RootNamespace>
|
|
<AssemblyName>HostedLocalTools</AssemblyName>
|
|
<NoWarn>$(NoWarn);</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.AI.Projects" />
|
|
<PackageReference Include="Azure.Identity" />
|
|
<PackageReference Include="DotNetEnv" />
|
|
</ItemGroup>
|
|
|
|
<!-- For contributors: uses ProjectReference to build against local source -->
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\..\..\src\Microsoft.Agents.AI.Foundry\Microsoft.Agents.AI.Foundry.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- For end-users: uncomment the PackageReference below and remove the ProjectReference above
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Agents.AI.Foundry" Version="1.0.0" />
|
|
</ItemGroup>
|
|
-->
|
|
|
|
</Project>
|