24 lines
1.1 KiB
XML
24 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
<RootNamespace>WinUINotes.Grpc</RootNamespace>
|
|
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
|
|
<UseWinUI>true</UseWinUI>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.31.1" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.72.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.4188" />
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250606001" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\greet.proto" GrpcServices="Client" />
|
|
<Protobuf Include="Protos\my_diary.proto" GrpcServices="Client" />
|
|
</ItemGroup>
|
|
</Project> |