12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <Nullable>disable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DebugType>none</DebugType>
- <DebugSymbols>false</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="google\api\http.proto" />
- </ItemGroup>
- <ItemGroup>
- <Protobuf Include="google\api\annotations.proto" GrpcServices="Server" />
- <Protobuf Include="google\api\http.proto" GrpcServices="Server" />
- <Protobuf Include="Protos\greet.proto" GrpcServices="Server" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Grpc.AspNetCore" Version="2.66.0" />
- <PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="6.9.0" />
- </ItemGroup>
- </Project>
|