Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 31 additions & 31 deletions src/SharpCoreDB.Server.Protocol/SharpCoreDB.Server.Protocol.csproj
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<!-- Assembly info -->
<AssemblyName>SharpCoreDB.Server.Protocol</AssemblyName>
<Version>1.5.0</Version>
<Description>Network protocol definitions for SharpCoreDB server (gRPC, binary, HTTP)</Description>
</PropertyGroup>

<ItemGroup>
<!-- gRPC & Protobuf (latest stable for .NET 10) -->
<PackageReference Include="Grpc.Core.Api" Version="2.70.0" />
<PackageReference Include="Grpc.Tools" Version="2.70.0" PrivateAssets="All" />
<PackageReference Include="Google.Protobuf" Version="3.29.3" />

<!-- Include .proto files -->
<Protobuf Include="Protos\*.proto" GrpcServices="Both" />
</ItemGroup>

<ItemGroup>
<!-- Folder for proto files -->
<None Remove="Protos\**\*.proto" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Assembly info -->
<AssemblyName>SharpCoreDB.Server.Protocol</AssemblyName>
<Version>1.5.0</Version>
<Description>Network protocol definitions for SharpCoreDB server (gRPC, binary, HTTP)</Description>
</PropertyGroup>
<ItemGroup>
<!-- gRPC & Protobuf (latest stable for .NET 10) -->
<PackageReference Include="Grpc.Core.Api" Version="2.70.0" />
<PackageReference Include="Grpc.Tools" Version="2.70.0" PrivateAssets="All" />
<PackageReference Include="Google.Protobuf" Version="3.34.0" />
<!-- Include .proto files -->
<Protobuf Include="Protos\*.proto" GrpcServices="Both" />
</ItemGroup>
<ItemGroup>
<!-- Folder for proto files -->
<None Remove="Protos\**\*.proto" />
</ItemGroup>
</Project>
Loading