Skip to content

Commit

Permalink
Update library version
Browse files Browse the repository at this point in the history
  • Loading branch information
Desz01ate committed Sep 24, 2024
1 parent d685b36 commit cbcf51a
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0-preview-4</Version>
<Version>3.0.0</Version>
<Description>A library contains common code related to domain modeling.</Description>
<PackageProjectUrl>https://github.com/codehardth/Codehard.Common</PackageProjectUrl>
<RepositoryUrl>https://github.com/codehardth/Codehard.Common</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Codehard.Common/Codehard.Common/Codehard.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0-preview-1</Version>
<Version>3.0.0</Version>
<Description>A library contains common code related to Base Class Library.</Description>
<PackageProjectUrl>https://github.com/codehardth/Codehard.Common</PackageProjectUrl>
<RepositoryUrl>https://github.com/codehardth/Codehard.Common</RepositoryUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<PackageId>Codehard.DomainModel.Generator</PackageId>
<Version>3.0.0-preview-3</Version>
<Version>3.0.0</Version>
<Description>A domain-driven boilerplate generator.</Description>
<PackageReleaseNotes>Allow delegate to be use with specification generator.</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0-preview-8</Version>
<Version>3.0.0</Version>
<Description>A functional extensions for Entity Framework.</Description>
<PackageProjectUrl>https://github.com/codehardth/Codehard.Common/tree/main/src/Codehard.Functional</PackageProjectUrl>
<RepositoryUrl>https://github.com/codehardth/Codehard.Common/tree/main/src/Codehard.Functional</RepositoryUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0-preview-2</Version>
<Version>3.0.0</Version>
<Description>A functional extensions for Marten.</Description>
<PackageProjectUrl>https://github.com/codehardth/Codehard.Functional</PackageProjectUrl>
<RepositoryUrl>https://github.com/codehardth/Codehard.Functional</RepositoryUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0-preview-4</Version>
<Version>3.0.0</Version>
<Description>A functional extensions for MediatR.</Description>
<PackageProjectUrl>https://github.com/codehardth/Codehard.Functional</PackageProjectUrl>
<RepositoryUrl>https://github.com/codehardth/Codehard.Functional</RepositoryUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0-preview-3</Version>
<Version>3.0.0</Version>
<Description>A library contains common code related to functional programming based on LanguageExt.</Description>
<PackageProjectUrl>https://github.com/codehardth/Codehard.Functional</PackageProjectUrl>
<RepositoryUrl>https://github.com/codehardth/Codehard.Functional</RepositoryUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public Root(Guid id, string value, List<Child> children)
AddDomainEvent(new RootCreatedEvent(id, DateTimeOffset.Now));
}

public override Guid Id { get; protected init; }
public override Guid Id { get; init; }

public string Value { get; set; }

Expand All @@ -37,7 +37,7 @@ public Child(int id, string value)
Value = value;
}

public override int Id { get; protected init; }
public override int Id { get; init; }

public string Value { get; set; }
}
Expand All @@ -55,7 +55,7 @@ public MaterializedRoot(Guid id, string value, string lastestChildValue)
LastestChildValue = lastestChildValue;
}

public override int Id { get; protected init; }
public override int Id { get; init; }

public Guid RootId { get; set; }

Expand All @@ -72,7 +72,7 @@ public CompletelyNonRelated(int id, DateTime createdAt)
this.CreatedAt = createdAt;
}

public override int Id { get; protected init; }
public override int Id { get; init; }

public DateTime CreatedAt { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0-preview-4</Version>
<Version>3.0.0</Version>
<Description>A library contains common code related to Entity Framework Core.</Description>
<PackageProjectUrl>https://github.com/codehardth/Codehard.Common</PackageProjectUrl>
<RepositoryUrl>https://github.com/codehardth/Codehard.Common</RepositoryUrl>
Expand Down

0 comments on commit cbcf51a

Please sign in to comment.