Skip to content

Commit

Permalink
Little more cleanup of project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
RobThree committed May 27, 2024
1 parent 101081d commit f82c7da
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion IdGen.Configuration/IdGen.Configuration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<Configurations>Debug;Release</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DocumentationFile>bin\Release\IdGen.Configuration.xml</DocumentationFile>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion IdGen.DependencyInjection/IdGen.DependencyInjection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<Configurations>Debug;Release</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DocumentationFile>bin\Release\IdGen.DependencyInjection.xml</DocumentationFile>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion IdGen/Id.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public record struct Id
/// <param name="sequenceNumber">The sequence number of the id.</param>
/// <param name="generatorId">The generator id of the generator that generated the id.</param>
/// <param name="dateTimeOffset">The date/time when the id was generated.</param>
/// <returns></returns>
/// <returns>An <see cref="Id"/>.</returns>
internal Id(int sequenceNumber, int generatorId, DateTimeOffset dateTimeOffset)
{
SequenceNumber = sequenceNumber;
Expand Down
1 change: 0 additions & 1 deletion IdGen/IdGen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/RobThree/IdGen</PackageProjectUrl>
<PackageTags>scalable unique id generator distributed</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<Description>Twitter Snowflake-alike ID generator for .Net</Description>
<RootNamespace>IdGen</RootNamespace>
<PackageIcon>logo.png</PackageIcon>
Expand Down
2 changes: 1 addition & 1 deletion IdGen/IdGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public IdGenerator(int generatorId)
/// Initializes a new instance of the <see cref="IdGenerator"/> class with the specified <see cref="IdGeneratorOptions"/>.
/// </summary>
/// <param name="generatorId">The Id of the generator.</param>
/// <param name="options">The <see cref="IdGeneratorOptions"/> for the <see cref="IdGenerator"/></param>.
/// <param name="options">The <see cref="IdGeneratorOptions"/> for the <see cref="IdGenerator"/>.</param>.
/// <exception cref="ArgumentNullException">Thrown when <paramref name="options"/> is null.</exception>
public IdGenerator(int generatorId, IdGeneratorOptions options)
{
Expand Down

0 comments on commit f82c7da

Please sign in to comment.