Skip to content

Commit

Permalink
chore: version bump and docs fixed (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
BoBoBaSs84 authored Dec 27, 2024
2 parents 7798aaf + c5b9557 commit 2d06e16
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>

<PropertyGroup Label="Versioning">
<VersionMajor>2</VersionMajor>
<VersionMinor>7</VersionMinor>
<VersionMajor>3</VersionMajor>
<VersionMinor>0</VersionMinor>
<VersionPatch>$([System.DateTime]::UtcNow.ToString("MMdd"))</VersionPatch>
<VersionRevision>$([System.DateTime]::UtcNow.TimeOfDay.TotalHours.ToString("0"))</VersionRevision>
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch).$(VersionRevision)</VersionPrefix>
Expand Down Expand Up @@ -41,7 +41,7 @@
<Authors>$(Author)</Authors>
<Company>https://github.com/$(Author)</Company>
<Copyright>Copyright © $([System.DateTime]::UtcNow.Year) $(Author)</Copyright>
<Description>A reusable repository pattern in ASP.NET Core. Contains frequently used model abstraction, their standard implementations and repository abstractions with their standard implementation.</Description>
<Description>A reusable repository pattern in ASP.NET Core. Contains commonly used entity abstractions, their default implementations and repository abstractions with their default implementations.</Description>
<Product>BB84.EntityFrameworkCore</Product>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/$(Author)/$(Product)</RepositoryUrl>
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@
[![Release](https://img.shields.io/github/v/release/BoBoBaSs84/BB84.EntityFrameworkCore)](https://github.com/BoBoBaSs84/BB84.EntityFrameworkCore/releases/latest)

# BB84.EntityFrameworkCore
A reusable repository pattern in ASP.NET Core. Contains frequently used model and repository abstractions.
A reusable repository pattern in ASP.NET Core. Contains commonly used entity abstractions, their default implementations and repository abstractions with their default implementations.

## Packages

### BB84.EntityFrameworkCore.Entities

This package contains frequently used base models.
This package contains the standard implementation of the entity abstractions.

### BB84.EntityFrameworkCore.Entities.Abstractions

This package contains the abstractions for the frequently used base models.
This package only contains the entity abstractions.

### BB84.EntityFrameworkCore.Repositories

This package contains frequently used base repository implementations.
This package contains the standard repository implementations of the corresponding abstractions.

### BB84.EntityFrameworkCore.Repositories.Abstractions

This package contains the abstractions for the frequently used base repository implementations.
This package contains the standard repository abstractions.

### BB84.EntityFrameworkCore
### BB84.EntityFrameworkCore.Repositories.SqlServer

This package contains frequently used sql server configuration base classes and various extension methods.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# BB84.EntityFrameworkCore.Entities.Abstractions

This package contains frequently used base model abstractions.
This package only contains the entity abstractions.
2 changes: 1 addition & 1 deletion src/BB84.EntityFrameworkCore.Entities/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# BB84.EntityFrameworkCore.Entities

This package contains frequently used model implementations of their respective abstractions.
This package contains the standard implementation of the entity abstractions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# BB84.EntityFrameworkCore.Repositories.Abstractions

This package contains frequently used repository abstractions.
This package contains the standard repository abstractions.
4 changes: 2 additions & 2 deletions src/BB84.EntityFrameworkCore.Repositories.SqlServer/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# BB84.EntityFrameworkCore
# BB84.EntityFrameworkCore.Repositories.SqlServer

This package contains configurations and extensions for the use of EntityFrameworkCore with SqlServer.
This package contains frequently used sql server configuration base classes and various extension methods.
2 changes: 1 addition & 1 deletion src/BB84.EntityFrameworkCore.Repositories/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# BB84.EntityFrameworkCore.Repositories

This package contains frequently used repository implementations of their respective abstractions.
This package contains the standard repository implementations of the corresponding abstractions.

0 comments on commit 2d06e16

Please sign in to comment.