Files
client/CloudPrint.Client.csproj

30 lines
1.2 KiB
XML
Raw Normal View History

2026-05-23 18:16:50 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>CloudPrint.Client</AssemblyName>
<RootNamespace>CloudPrint.Client</RootNamespace>
</PropertyGroup>
<ItemGroup>
2026-05-28 23:26:37 +08:00
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
2026-05-23 18:16:50 +08:00
<PackageReference Include="Google.Protobuf" Version="3.27.3" />
<PackageReference Include="Grpc.Net.Client" Version="2.65.0" />
<PackageReference Include="Grpc.Tools" Version="2.65.0" PrivateAssets="All" />
<PackageReference Include="PDFsharp" Version="6.2.4" />
<PackageReference Include="SharpCompress" Version="0.48.1" />
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="..\backend\cloudprint-backend\proto\cloudprint.proto" GrpcServices="Client" Link="Protos\cloudprint.proto" />
</ItemGroup>
2026-05-28 23:26:37 +08:00
</Project>