Skip to content

Commit

Permalink
CM-21: doku angepasst
Browse files Browse the repository at this point in the history
  • Loading branch information
skukshaus committed Mar 25, 2024
1 parent be3d6b7 commit e530059
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Common.Abstractions/Common.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<VersionPrefix>$(AssemblyVersion)</VersionPrefix>
<Title>$(AssemblyName)</Title>
<Description>The most flexible logger on earth</Description>
<Description>A collection of well known pattern interfaces</Description>
<PackageId>$(AssemblyName)</PackageId>
<PackageProjectUrl>https://github.com/skukshaus/Common</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/skukshaus/Common</RepositoryUrl>
<RepositoryType>github</RepositoryType>
<PackageTags>Common, solid, abstraction, contract, dependency, injection</PackageTags>
<PackageTags>Common, solid, abstraction, contract, dependency, injection, gof, architecture, factory, repository</PackageTags>
<FileVersion>$(AssemblyVersion)</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<OutputPath>..\.bin\$(Configuration)\</OutputPath>
Expand Down
2 changes: 1 addition & 1 deletion Common.Tests/DataStoring/RepositoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Ksh.Common.Tests.DataStoring;

public class RepositoryTests
{
[Fact] public void foo()
[Fact] public void CreatePersonRepoWithUow()
{
// Arrange
var uow = new UnitOfWork();
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
| Ksh.Common.Abstractions | [![NuGet](https://img.shields.io/nuget/v/Ksh.Common.Abstractions.svg)](https://www.nuget.org/packages/Ksh.Common.Abstractions/) | [![NuGet](https://img.shields.io/nuget/dt/Ksh.Common.Abstractions.svg)](https://www.nuget.org/packages/Ksh.Common.Abstractions/) |

This library is a collection of very often used marker interfaces.

Here are just a few examples: ``IFactory>``, ``IShallowCopy``, ``IDeepCopy``, ``IRepository``, and so on.

If you want learn more about these design patterns, you can visit [refactoring.guru](https://refactoring.guru/design-patterns)

0 comments on commit e530059

Please sign in to comment.