Advertisement
Guest User

Untitled

a guest
Mar 12th, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | Source Code | 0 0
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2.  
  3. <PropertyGroup>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. </PropertyGroup>
  8.  
  9. <ItemGroup>
  10. <Content Remove="nuget.config" />
  11. </ItemGroup>
  12.  
  13. <ItemGroup>
  14. <_ContentIncludedByDefault Remove="nuget.config" />
  15. </ItemGroup>
  16.  
  17. <ItemGroup>
  18. <None Include="nuget.config" />
  19. </ItemGroup>
  20.  
  21. <ItemGroup>
  22. <Protobuf Include="Protos\greet.proto" GrpcServices="Server" />
  23. </ItemGroup>
  24.  
  25. <ItemGroup>
  26. <PackageReference Include="Grpc.AspNetCore" Version="2.51.0" />
  27. </ItemGroup>
  28.  
  29. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement