Skip to content

Commit

Permalink
improve descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Sep 8, 2024
1 parent 94e3f88 commit fdb4d82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Equatable.Generator

Source generator for `Equals` and `GetHashCode`
Source generator for `Equals` and `GetHashCode` with attribute based control of equality implementation

[![Build Project](https://github.com/loresoft/Equatable.Generator/actions/workflows/dotnet.yml/badge.svg)](https://github.com/loresoft/Equatable.Generator/actions/workflows/dotnet.yml)

Expand All @@ -13,9 +13,10 @@ Source generator for `Equals` and `GetHashCode`
- Override `Equals` and `GetHashCode`
- Implement `IEquatable<T>`
- Support `class`, `record` and `struct` types
- Support `EqualityComparer` per property
- Comparers supported: String, Sequence, Dictionary, HashSet, Reference, and Custom
- No dependencies
- Support `EqualityComparer` per property via attribute
- Attribute based control of equality implementation.
- Attribute comparers supported: String, Sequence, Dictionary, HashSet, Reference, and Custom
- No runtime dependencies. Library is compile time dependence only.

### Usage

Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup Label="Package">
<Description>Source generator for Equals and GetHashCode</Description>
<Description>Source generator for Equals and GetHashCode with attribute based control of equality implementation</Description>
<Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) LoreSoft</Copyright>
<Authors>LoreSoft</Authors>
<NeutralLanguage>en-US</NeutralLanguage>
Expand Down

0 comments on commit fdb4d82

Please sign in to comment.