Skip to content

Commit

Permalink
Merge pull request #525 from paillave/dotnet9-migration
Browse files Browse the repository at this point in the history
feat: update PgpProviderProcessorAdapter to handle PGP files and incr…
  • Loading branch information
paillave authored Jan 21, 2025
2 parents cb75940 + f62ca6c commit 5787942
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Paillave.Etl.Pgp/PgpProviderProcessorAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ public class PgpAdapterConnectionParameters

public class PgpProviderProcessorAdapter : ProviderProcessorAdapterBase<PgpAdapterConnectionParameters, object, PgpAdapterProcessorParameters>
{
public override string Description => "Handle zip files";
public override string Name => "Zip";
public override string Description => "Handle pgp files";
public override string Name => "Pgp";
protected override IFileValueProvider CreateProvider(string code, string name, string connectionName, PgpAdapterConnectionParameters connectionParameters, object inputParameters)
=> null;
protected override IFileValueProcessor CreateProcessor(string code, string name, string connectionName, PgpAdapterConnectionParameters connectionParameters, PgpAdapterProcessorParameters outputParameters)
Expand Down
2 changes: 1 addition & 1 deletion src/SharedSettings.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Version>2.2.6-beta</Version>
<Version>2.2.7-beta</Version>
<PackageIcon>NugetIcon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Stéphane Royer</Authors>
Expand Down

0 comments on commit 5787942

Please sign in to comment.