Skip to content

Commit 7cc7381

Browse files
author
Jani Giannoudis
committed
updatend to .NET 8
updated NuGets updated version to 0.8.0-beta.1
1 parent 42295d4 commit 7cc7381

10 files changed

+10
-44
lines changed

Client.Test/AssertFailedException.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Runtime.Serialization;
32

43
namespace PayrollEngine.Client.Test;
54

@@ -22,10 +21,4 @@ public AssertFailedException(string message, Exception innerException) :
2221
base(message, innerException)
2322
{
2423
}
25-
26-
/// <inheritdoc/>
27-
protected AssertFailedException(SerializationInfo info, StreamingContext context) :
28-
base(info, context)
29-
{
30-
}
3124
}

Client.Test/Case/CaseBuildTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ namespace PayrollEngine.Client.Test.Case;
66
/// Test input: case change setup
77
/// Test output: case set
88
/// </summary>
9-
public class CaseBuildTest : CaseScriptTest<CaseChangeSetup, CaseSet>
10-
{
11-
}
9+
public class CaseBuildTest : CaseScriptTest<CaseChangeSetup, CaseSet>;

Client.Test/Case/CaseValidateTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ namespace PayrollEngine.Client.Test.Case;
66
/// Test input: case change setup
77
/// Test output: case change
88
/// </summary>
9-
public class CaseValidateTest : CaseScriptTest<CaseChangeSetup, CaseChange>
10-
{
11-
}
9+
public class CaseValidateTest : CaseScriptTest<CaseChangeSetup, CaseChange>;
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
namespace PayrollEngine.Client.Test;
22

33
/// <summary>Parse custom test class</summary>
4-
public class CustomTestParserBase
5-
{
6-
}
4+
public class CustomTestParserBase;

Client.Test/PayrollEngine.Client.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.CodeAnalysis.Compilers" Version="4.6.0" />
20-
<PackageReference Include="PayrollEngine.Client.Core" Version="0.6.0-beta.11" />
19+
<PackageReference Include="Microsoft.CodeAnalysis.Compilers" Version="4.8.0" />
20+
<PackageReference Include="PayrollEngine.Client.Core" Version="0.8.0-beta.1" />
2121
</ItemGroup>
2222

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

Client.Test/PayrollEngine.Client.Test.xml

Lines changed: 0 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Client.Test/Report/ReportBuildTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ namespace PayrollEngine.Client.Test.Report;
77
/// Test input: report request
88
/// Test output: list of report parameter
99
/// </summary>
10-
public class ReportBuildTest : ReportScriptTest<ReportRequest, List<ReportParameter>>
11-
{
12-
}
10+
public class ReportBuildTest : ReportScriptTest<ReportRequest, List<ReportParameter>>;

Client.Test/Report/ReportExecuteTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ namespace PayrollEngine.Client.Test.Report;
77
/// Test input: report request
88
/// Test output: report data set
99
/// </summary>
10-
public class ReportExecuteTest : ReportScriptTest<ReportRequest, DataSet>
11-
{
12-
}
10+
public class ReportExecuteTest : ReportScriptTest<ReportRequest, DataSet>;

Client.Test/TestCompileException.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Runtime.Serialization;
43
using System.Text;
54

65
namespace PayrollEngine.Client.Test;
@@ -16,14 +15,6 @@ public TestCompileException(string message, Exception innerException) :
1615
{
1716
}
1817

19-
/// <summary>Initializes a new instance of the <see cref="TestCompileException"></see> class.</summary>
20-
/// <param name="info">The serialization info</param>
21-
/// <param name="context">The streaming context</param>
22-
protected TestCompileException(SerializationInfo info, StreamingContext context) :
23-
base(info, context)
24-
{
25-
}
26-
2718
/// <summary>Initializes a new instance of the <see cref="TestCompileException"></see> class.</summary>
2819
/// <param name="failures">The diagnostic results</param>
2920
internal TestCompileException(IList<string> failures) :

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project>
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<Version>0.6.0-beta.11</Version>
6-
<FileVersion>0.6.0</FileVersion>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Version>0.8.0-beta.1</Version>
6+
<FileVersion>0.8.0</FileVersion>
77
<InformationalVersion></InformationalVersion>
88
<Authors>Jani Giannoudis</Authors>
99
<Company>Software Consulting Giannoudis</Company>

0 commit comments

Comments
 (0)