Skip to content

Commit 0dc6075

Browse files
author
Jani Giannoudis
committed
updated third party nuget
updated version to 0.9.0-beta.9
1 parent 3dcf105 commit 0dc6075

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ItemGroup>
1111
<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.1.3">
13+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

Client.Scripting/CaseObject.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ namespace PayrollEngine.Client.Scripting;
99

1010
/// <summary>Case object attribute</summary>
1111
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
12-
public sealed class CaseObjectAttribute(string ns) : Attribute
12+
public class CaseObjectAttribute(string ns) : Attribute
1313
{
1414
/// <summary>Object namespace</summary>
1515
public string Ns { get; } = ns;
1616
}
1717

1818
/// <summary>Case field ignore attribute</summary>
1919
[AttributeUsage(AttributeTargets.Property)]
20-
public sealed class CaseFieldIgnoreAttribute : Attribute;
20+
public class CaseFieldIgnoreAttribute : Attribute;
2121

2222
/// <summary>Case object extension methods</summary>
2323
public static class CaseObjectExtensions

Client.Scripting/PayrollEngine.Client.Scripting.csproj

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

183183
<ItemGroup>
184184
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
185-
<PackageReference Include="PayrollEngine.Client.Core" Version="0.9.0-beta.8" />
185+
<PackageReference Include="PayrollEngine.Client.Core" Version="0.9.0-beta.9" />
186186
</ItemGroup>
187187

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

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.8</Version>
5+
<Version>0.9.0-beta.9</Version>
66
<FileVersion>0.9.0</FileVersion>
77
<InformationalVersion></InformationalVersion>
88
<Authors>Jani Giannoudis</Authors>

0 commit comments

Comments
 (0)