From f82c7dac555b099d77ae9d49e3b226826761ab55 Mon Sep 17 00:00:00 2001 From: RobIII Date: Mon, 27 May 2024 12:21:27 +0200 Subject: [PATCH] Little more cleanup of project files. --- IdGen.Configuration/IdGen.Configuration.csproj | 2 +- IdGen.DependencyInjection/IdGen.DependencyInjection.csproj | 2 +- IdGen/Id.cs | 2 +- IdGen/IdGen.csproj | 1 - IdGen/IdGenerator.cs | 2 +- 5 files changed, 4 insertions(+), 5 deletions(-) diff --git a/IdGen.Configuration/IdGen.Configuration.csproj b/IdGen.Configuration/IdGen.Configuration.csproj index c17d295..6555449 100644 --- a/IdGen.Configuration/IdGen.Configuration.csproj +++ b/IdGen.Configuration/IdGen.Configuration.csproj @@ -24,7 +24,7 @@ Debug;Release - + bin\Release\IdGen.Configuration.xml diff --git a/IdGen.DependencyInjection/IdGen.DependencyInjection.csproj b/IdGen.DependencyInjection/IdGen.DependencyInjection.csproj index 2b5cd2d..8b27543 100644 --- a/IdGen.DependencyInjection/IdGen.DependencyInjection.csproj +++ b/IdGen.DependencyInjection/IdGen.DependencyInjection.csproj @@ -24,7 +24,7 @@ Debug;Release - + bin\Release\IdGen.DependencyInjection.xml diff --git a/IdGen/Id.cs b/IdGen/Id.cs index 5d9c4d3..8c90406 100644 --- a/IdGen/Id.cs +++ b/IdGen/Id.cs @@ -28,7 +28,7 @@ public record struct Id /// The sequence number of the id. /// The generator id of the generator that generated the id. /// The date/time when the id was generated. - /// + /// An . internal Id(int sequenceNumber, int generatorId, DateTimeOffset dateTimeOffset) { SequenceNumber = sequenceNumber; diff --git a/IdGen/IdGen.csproj b/IdGen/IdGen.csproj index 95b97d4..404a6db 100644 --- a/IdGen/IdGen.csproj +++ b/IdGen/IdGen.csproj @@ -10,7 +10,6 @@ MIT https://github.com/RobThree/IdGen scalable unique id generator distributed - Twitter Snowflake-alike ID generator for .Net IdGen logo.png diff --git a/IdGen/IdGenerator.cs b/IdGen/IdGenerator.cs index 2a7d907..b2bd2d3 100644 --- a/IdGen/IdGenerator.cs +++ b/IdGen/IdGenerator.cs @@ -48,7 +48,7 @@ public IdGenerator(int generatorId) /// Initializes a new instance of the class with the specified . /// /// The Id of the generator. - /// The for the . + /// The for the .. /// Thrown when is null. public IdGenerator(int generatorId, IdGeneratorOptions options) {