22 lines
572 B
XML
22 lines
572 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\greet.proto" GrpcServices="Both" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Files/test.txt" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CsvHelper" Version="33.0.1" />
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.66.0" />
|
|
</ItemGroup>
|
|
|
|
</Project> |