Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,6 @@ jobs:
--api-key ${{ secrets.NUGET_API_KEY }}
--skip-duplicate

- name: Publish symbols to NuGet.org
run: >
dotnet nuget push ./artifacts/*.snupkg
--source https://api.nuget.org/v3/index.json
--api-key ${{ secrets.NUGET_API_KEY }}
--skip-duplicate

- name: Publish to GitHub Packages
run: >
dotnet nuget push ./artifacts/*.nupkg
Expand Down Expand Up @@ -117,15 +110,13 @@ jobs:

- Soft delete with global query filters
- Audit trail (CreatedAt, UpdatedAt, CreatedBy, UpdatedBy)
- Multi-tenancy support
- Repository + Unit of Work pattern
- Specification pattern
- Offset & keyset pagination
- Dynamic filters
- Structured exceptions
files: |
./artifacts/*.nupkg
./artifacts/*.snupkg
draft: false
prerelease: false
env:
Expand Down
8 changes: 3 additions & 5 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,17 @@
<Product>EfCoreKit</Product>
<Copyright>Copyright © Isaiah Clifford Opoku 2026</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>efcore;entityframework;soft-delete;audit;pagination;multi-tenancy;repository;specification;unit-of-work</PackageTags>
<PackageTags>efcore;entity-framework-core;soft-delete;audit-trail;pagination;repository-pattern;specification-pattern;unit-of-work;dynamic-filters;orm-extensions;dotnet;csharp</PackageTags>
<PackageProjectUrl>https://github.com/Clifftech123/EfCoreKit</PackageProjectUrl>
<RepositoryUrl>https://github.com/Clifftech123/EfCoreKit</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<!-- Symbols, Source Link & Debugging -->
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<!-- Build Quality -->
Expand Down
4 changes: 0 additions & 4 deletions src/EfCoreKit/EfCoreKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
<PackageTags>efcore;entity-framework-core;entityframeworkcore;soft-delete;softdelete;audit-trail;audit;repository-pattern;repository;unit-of-work;specification-pattern;specification;pagination;keyset-pagination;cursor-pagination;dynamic-filters;query-helpers;data-access;orm-extensions;dotnet;csharp;boilerplate</PackageTags>
<PackageReadmeFile>README.nuget.md</PackageReadmeFile>
<IsPackable>true</IsPackable>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading