Skip to content

Commit 46bbbf5

Browse files
author
Jani Giannoudis
committed
case input actions: fixed action name SetAttachmentOptional()
updated third party nugets updated version to 0.9.0-beta.7
1 parent 4b0bd23 commit 46bbbf5

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Client.Scripting.Tests/PayrollEngine.Client.Scripting.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
1212
<PackageReference Include="xunit" Version="2.9.3" />
13-
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
13+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.3">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

Client.Scripting/Function/CaseInputActions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -894,8 +894,8 @@ public void SetAttachmentNone(CaseChangeActionContext context) =>
894894

895895
/// <summary>Set optional file attachments</summary>
896896
/// <param name="context">The action context</param>
897-
[CaseBuildAction("SeAttachmentOptional", "Set optional file attachments", "FieldInput", "Field")]
898-
public void SeAttachmentOptional(CaseChangeActionContext context) =>
897+
[CaseBuildAction("SetAttachmentOptional", "Set optional file attachments", "FieldInput", "Field")]
898+
public void SetAttachmentOptional(CaseChangeActionContext context) =>
899899
SetFieldAttachmentOptional(context, context.CaseFieldName);
900900

901901
/// <summary>Set mandatory file attachments</summary>

Client.Scripting/PayrollEngine.Client.Scripting.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@
181181
</ItemGroup>
182182

183183
<ItemGroup>
184-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" />
185-
<PackageReference Include="PayrollEngine.Client.Core" Version="0.9.0-beta.6" />
184+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
185+
<PackageReference Include="PayrollEngine.Client.Core" Version="0.9.0-beta.7" />
186186
</ItemGroup>
187187

188188
<!-- include xml documention files and json schemas to the nuget package -->

Client.Scripting/PayrollEngine.Client.Scripting.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4561,7 +4561,7 @@
45614561
<summary>Set without file attachments</summary>
45624562
<param name="context">The action context</param>
45634563
</member>
4564-
<member name="M:PayrollEngine.Client.Scripting.Function.CaseInputActions.SeAttachmentOptional(PayrollEngine.Client.Scripting.Function.CaseChangeActionContext)">
4564+
<member name="M:PayrollEngine.Client.Scripting.Function.CaseInputActions.SetAttachmentOptional(PayrollEngine.Client.Scripting.Function.CaseChangeActionContext)">
45654565
<summary>Set optional file attachments</summary>
45664566
<param name="context">The action context</param>
45674567
</member>

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5-
<Version>0.9.0-beta.6</Version>
5+
<Version>0.9.0-beta.7</Version>
66
<FileVersion>0.9.0</FileVersion>
77
<InformationalVersion></InformationalVersion>
88
<Authors>Jani Giannoudis</Authors>

0 commit comments

Comments
 (0)