You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

HelloAgentTests.csproj 1.2 kB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <None Update="appsettings.json">
  10. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  11. </None>
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Microsoft.Extensions.Hosting" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <PackageReference Include="Google.Protobuf" />
  18. <PackageReference Include="Grpc.Tools" PrivateAssets="All" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Contracts\Microsoft.AutoGen.Contracts.csproj" />
  22. <ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Core\Microsoft.AutoGen.Core.csproj" />
  23. <ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Agents\Microsoft.AutoGen.Agents.csproj" />
  24. <ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Core.Grpc\Microsoft.AutoGen.Core.Grpc.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <!--Protobuf Include="..\protos\agent_events.proto" Link="protos\agent_events.proto" /-->
  28. </ItemGroup>
  29. </Project>