Skip to content

Commit 4110c8d

Browse files
committed
fix(SDK): Fixed the FunctionDefinitionCollectionValidator, which's name property was throwing a NotImplementedException
Fixes #39
1 parent 5bb8c43 commit 4110c8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ServerlessWorkflow.Sdk/ServerlessWorkflow.Sdk.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<NeutralLanguage>en</NeutralLanguage>
7-
<AssemblyVersion>0.8.1.6</AssemblyVersion>
8-
<FileVersion>0.8.1.6</FileVersion>
9-
<Version>0.8.1.6</Version>
7+
<AssemblyVersion>0.8.1.7</AssemblyVersion>
8+
<FileVersion>0.8.1.7</FileVersion>
9+
<Version>0.8.1.7</Version>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
1212
<PackageLicenseFile>LICENSE</PackageLicenseFile>

src/ServerlessWorkflow.Sdk/Services/Validation/FunctionDefinitionCollectionValidator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ internal class FunctionDefinitionCollectionValidator
3131
{
3232

3333
/// <inheritdoc/>
34-
public override string Name => throw new NotImplementedException();
34+
public override string Name => "FunctionDefinitionCollection";
3535

3636
/// <inheritdoc/>
3737
public override bool IsValid(ValidationContext<WorkflowDefinition> context, IEnumerable<FunctionDefinition> value)

0 commit comments

Comments
 (0)