21 lines
681 B
XML
21 lines
681 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<OutputType>Exe</OutputType>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Google.Protobuf" Version="3.34.1" />
|
|||
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.66.0" />
|
|||
|
|
<PackageReference Include="Grpc.Tools" Version="2.66.0" PrivateAssets="All" />
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="8.0.1" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Protobuf Include=".\proto\cloudprint.proto" GrpcServices="Client" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|