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.

GettingStartedGrpc.csproj 857 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <RootNamespace>getting_started</RootNamespace>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\..\src\Microsoft.AutoGen\Contracts\Microsoft.AutoGen.Contracts.csproj" />
  11. <ProjectReference Include="..\..\src\Microsoft.AutoGen\Core\Microsoft.AutoGen.Core.csproj" />
  12. <ProjectReference Include="..\..\src\Microsoft.AutoGen\Core.Grpc\Microsoft.AutoGen.Core.Grpc.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <Protobuf Include="message.proto" GrpcServices="Client" Link="Protos\message.proto" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <PackageReference Include="Grpc.Tools" PrivateAssets="All" />
  19. </ItemGroup>
  20. </Project>