GrpcService1.csproj 913 B

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <Nullable>disable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  9. <DebugType>none</DebugType>
  10. <DebugSymbols>false</DebugSymbols>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <None Remove="google\api\http.proto" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Protobuf Include="google\api\annotations.proto" GrpcServices="Server" />
  17. <Protobuf Include="google\api\http.proto" GrpcServices="Server" />
  18. <Protobuf Include="Protos\greet.proto" GrpcServices="Server" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Include="Grpc.AspNetCore" Version="2.66.0" />
  22. <PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="6.9.0" />
  23. </ItemGroup>
  24. </Project>