Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == '' and Exists('..\..\..\src\SharpCoreDB.EventSourcing\SharpCoreDB.EventSourcing.csproj')">true</UseLocalSharpCoreDbSources>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == ''">false</UseLocalSharpCoreDbSources>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' == 'true'">
<ProjectReference Include="..\..\..\src\SharpCoreDB.EventSourcing\SharpCoreDB.EventSourcing.csproj" />
</ItemGroup>

<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' != 'true'">
<PackageReference Include="SharpCoreDB.EventSourcing" Version="1.9.0" />
</ItemGroup>

<!-- Include OrderManagement source files as links -->
<ItemGroup>
<Compile Include="..\OrderManagement\OrderEvents.cs" Link="OrderEvents.cs" />
<Compile Include="..\OrderManagement\OrderAggregate.cs" Link="OrderAggregate.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.300" />
</ItemGroup>

</Project>

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == '' and Exists('..\..\..\src\SharpCoreDB.EventSourcing\SharpCoreDB.EventSourcing.csproj')">true</UseLocalSharpCoreDbSources>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == ''">false</UseLocalSharpCoreDbSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' == 'true'">
<ProjectReference Include="..\..\..\src\SharpCoreDB.EventSourcing\SharpCoreDB.EventSourcing.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' != 'true'">
<PackageReference Include="SharpCoreDB.EventSourcing" Version="1.9.0" />
</ItemGroup>
<!-- Include OrderManagement source files as links -->
<ItemGroup>
<Compile Include="..\OrderManagement\OrderEvents.cs" Link="OrderEvents.cs" />
<Compile Include="..\OrderManagement\OrderAggregate.cs" Link="OrderAggregate.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.300" />
</ItemGroup>
</Project>
62 changes: 31 additions & 31 deletions src/SharpCoreDB.AppHost/SharpCoreDB.AppHost.csproj
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
<Project>
<Sdk Name="Aspire.AppHost.Sdk" Version="13.2.0" />

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<ProjectCapability Include="Aspire" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="13.3.4" />
<PackageReference Include="KubernetesClient" Version="19.0.2" />
</ItemGroup>

<ItemGroup>
<!-- Reference to server project -->
<ProjectReference Include="..\SharpCoreDB.Server\SharpCoreDB.Server.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.300" />
</ItemGroup>

</Project>
<Project>
<Sdk Name="Aspire.AppHost.Sdk" Version="13.2.0" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectCapability Include="Aspire" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="13.3.5" />
<PackageReference Include="KubernetesClient" Version="19.0.2" />
</ItemGroup>
<ItemGroup>
<!-- Reference to server project -->
<ProjectReference Include="..\SharpCoreDB.Server\SharpCoreDB.Server.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.300" />
</ItemGroup>
</Project>
112 changes: 56 additions & 56 deletions src/SharpCoreDB.Client.Protocol/SharpCoreDB.Client.Protocol.csproj
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
<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.Client.Protocol</AssemblyName>
<Version>1.9.1</Version>
<Description>Client-side protocol implementation for SharpCoreDB (gRPC, binary)</Description>

<!-- NuGet Package Properties -->
<PackageId>SharpCoreDB.Client.Protocol</PackageId>
<Authors>MPCoreDeveloper</Authors>
<Company>SharpCoreDB</Company>
<Product>SharpCoreDB.Client.Protocol</Product>
<PackageTags>database;client;protocol;grpc;protobuf;sharpcoredb;net10</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl>
<RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>NuGet.README.md</PackageReadmeFile>
<PackageIcon>SharpCoreDB.jpg</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>v1.9.1: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<!-- gRPC & Protobuf (latest stable) -->
<PackageReference Include="Grpc.Net.Client" Version="2.80.0" />
<PackageReference Include="Google.Protobuf" Version="3.35.0" />
<PackageReference Include="Grpc.Tools" Version="2.80.0" PrivateAssets="All" />

<!-- Include .proto files (shared with server) -->
<Protobuf Include="..\SharpCoreDB.Server.Protocol\Protos\*.proto" GrpcServices="Client" Link="Protos\%(Filename)%(Extension)" />
</ItemGroup>

<ItemGroup>
<None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" />
<None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.8" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.8" />
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.300" />
</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.Client.Protocol</AssemblyName>
<Version>1.9.1</Version>
<Description>Client-side protocol implementation for SharpCoreDB (gRPC, binary)</Description>
<!-- NuGet Package Properties -->
<PackageId>SharpCoreDB.Client.Protocol</PackageId>
<Authors>MPCoreDeveloper</Authors>
<Company>SharpCoreDB</Company>
<Product>SharpCoreDB.Client.Protocol</Product>
<PackageTags>database;client;protocol;grpc;protobuf;sharpcoredb;net10</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl>
<RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>NuGet.README.md</PackageReadmeFile>
<PackageIcon>SharpCoreDB.jpg</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>v1.9.1: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<!-- gRPC & Protobuf (latest stable) -->
<PackageReference Include="Grpc.Net.Client" Version="2.80.0" />
<PackageReference Include="Google.Protobuf" Version="3.35.0" />
<PackageReference Include="Grpc.Tools" Version="2.81.0" PrivateAssets="All" />
<!-- Include .proto files (shared with server) -->
<Protobuf Include="..\SharpCoreDB.Server.Protocol\Protos\*.proto" GrpcServices="Client" Link="Protos\%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" />
<None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.8" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.8" />
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.300" />
</ItemGroup>
</Project>
118 changes: 59 additions & 59 deletions src/SharpCoreDB.Server.Protocol/SharpCoreDB.Server.Protocol.csproj
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
<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.9.1</Version>
<Description>Network protocol definitions for SharpCoreDB server (gRPC, binary, HTTP)</Description>

<!-- NuGet Package Properties -->
<PackageId>SharpCoreDB.Server.Protocol</PackageId>
<Authors>MPCoreDeveloper</Authors>
<Company>SharpCoreDB</Company>
<Product>SharpCoreDB.Server.Protocol</Product>
<PackageTags>database;server;protocol;grpc;protobuf;contracts;sharpcoredb;net10</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl>
<RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>NuGet.README.md</PackageReadmeFile>
<PackageIcon>SharpCoreDB.jpg</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>v1.9.1: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.</PackageReleaseNotes>
</PropertyGroup>

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

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

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

<ItemGroup>
<None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" />
<None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.300" />
</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.9.1</Version>
<Description>Network protocol definitions for SharpCoreDB server (gRPC, binary, HTTP)</Description>
<!-- NuGet Package Properties -->
<PackageId>SharpCoreDB.Server.Protocol</PackageId>
<Authors>MPCoreDeveloper</Authors>
<Company>SharpCoreDB</Company>
<Product>SharpCoreDB.Server.Protocol</Product>
<PackageTags>database;server;protocol;grpc;protobuf;contracts;sharpcoredb;net10</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl>
<RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>NuGet.README.md</PackageReadmeFile>
<PackageIcon>SharpCoreDB.jpg</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>v1.9.1: Synchronized release with the latest SharpCoreDB features, fixes, and documentation updates.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<!-- gRPC & Protobuf (latest stable for .NET 10) -->
<PackageReference Include="Grpc.Core.Api" Version="2.80.0" />
<PackageReference Include="Grpc.Tools" Version="2.81.0" PrivateAssets="All" />
<PackageReference Include="Google.Protobuf" Version="3.35.0" />
<!-- Include .proto files -->
<Protobuf Include="Protos\*.proto" GrpcServices="Both" />
</ItemGroup>
<ItemGroup>
<!-- Folder for proto files -->
<None Remove="Protos\**\*.proto" />
</ItemGroup>
<ItemGroup>
<None Include="..\SharpCoreDB\NuGet.README.md" Link="NuGet.README.md" Pack="true" PackagePath="/" />
<None Include="..\SharpCoreDB\SharpCoreDB.jpg" Link="SharpCoreDB.jpg" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.300" />
</ItemGroup>
</Project>
Loading
Loading