Skip to content

Commit 6f74294

Browse files
authored
Drop .NET6+7; Target only .NET8+9; Switch from dotnet-format to csharpier (#103)
1 parent 7677b0c commit 6f74294

29 files changed

+248
-116
lines changed

.config/dotnet-tools.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"csharpier": {
6+
"version": "0.30.6",
7+
"commands": [
8+
"dotnet-csharpier"
9+
],
10+
"rollForward": false
11+
}
12+
}
13+
}

.github/workflows/dependabot-automerge.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,18 @@ jobs:
1212
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
1313
if: ${{ github.actor == 'dependabot[bot]' }}
1414
steps:
15+
- uses: actions/checkout@v4
16+
- name: Verify commit signature.
17+
run: |
18+
curl -s https://github.com/web-flow.gpg | gpg --import
19+
echo "Imported GitHub keys."
20+
21+
echo "Verifying signature of commit: $GITHUB_SHA"
22+
if ! git verify-commit "$GITHUB_SHA"; then
23+
echo "Commit signature verification failed."
24+
exit 1
25+
fi
1526
- name: Approve a PR
1627
run: gh pr review --approve "$PR_URL"
1728
- name: Enable auto-merge for Dependabot PRs
18-
run: gh pr merge --auto --squash "$PR_URL"
29+
run: gh pr merge --auto --squash "$PR_URL"

.github/workflows/formatter.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: dotnet-format
1+
name: csharpier
22

33
on: [push, pull_request]
44

@@ -7,13 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- name: Setup .NET
10+
- name: Setup .NET 8
1111
uses: actions/setup-dotnet@v4
1212
with:
1313
dotnet-version: 8.0.100
14-
- name: Install dotnet-format
15-
run: |
16-
dotnet tool install -g dotnet-format
17-
- name: Run dotnet-format
18-
working-directory: ./TransformerBeeClient
19-
run: dotnet-format TransformerBeeClient.sln --check
14+
- name: Restore .NET tools
15+
run: dotnet tool restore
16+
- name: Run CSharpier
17+
run: dotnet csharpier . --check

.github/workflows/integrationtests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest]
14-
dotnet-version: ["6.0.201", "7.0.100", "8.0.100"]
14+
dotnet-version: ["9"]
1515
runs-on: ${{ matrix.os }}
1616
steps:
1717
- name: Checkout code
@@ -25,13 +25,13 @@ jobs:
2525
- name: Log into registry
2626
# GHCR_PAT is a personal access token for the Github Container Registry; You can create it using the following steps:
2727
# 1) Go to https://github.com/settings/tokens
28-
# 2) Create a new token (classic as of 2024-01-31)
28+
# 2) Create a new token (classic as of 2025-04-02)
2929
# 3) Select the following scopes: read:packages
3030
# GHCR_USR is the username for the Github Container Registry; it has to match the PAT and is the username of the Github account that created the PAT
3131
# You can update the tokens in the repository settings:
3232
# https://github.com/Hochfrequenz/transformer.bee_client.net/settings/secrets/actions/GHCR_PAT
3333
# https://github.com/Hochfrequenz/transformer.bee_client.net/settings/secrets/actions/GHCR_USR
34-
# Tokens will expire 2025-01-31
34+
# Tokens will expire 2026-04-01
3535
run: echo "${{ secrets.GHCR_PAT }}" | docker login ghcr.io -u ${{ secrets.GHCR_USR }} --password-stdin
3636
- name: Start containers
3737
run: docker compose -f "TransformerBeeClient/TransformerBeeClient.IntegrationTest/docker-compose.yml" up -d

.github/workflows/release_nuget.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
- name: Setup .NET Core
1313
uses: actions/setup-dotnet@v4
1414
with:
15-
dotnet-version: 8.0.100
15+
dotnet-version: 9
1616
- name: Build/Check for compile errors (dotnet build)
1717
working-directory: "TransformerBeeClient"
1818
run: dotnet build --configuration Release
1919
- name: Log into registry
2020
# GHCR_PAT is a personal access token for the Github Container Registry; You can create it using the following steps:
2121
# 1) Go to https://github.com/settings/tokens
22-
# 2) Create a new token (classic as of 2024-01-31)
22+
# 2) Create a new token (classic as of 2025-04-02)
2323
# 3) Select the following scopes: read:packages
2424
# GHCR_USR is the username for the Github Container Registry; it has to match the PAT and is the username of the Github account that created the PAT
2525
# You can update the tokens in the repository settings:
2626
# https://github.com/Hochfrequenz/transformer.bee_client.net/settings/secrets/actions/GHCR_PAT
2727
# https://github.com/Hochfrequenz/transformer.bee_client.net/settings/secrets/actions/GHCR_USR
28-
# Tokens will expire 2025-01-31
28+
# Tokens will expire 2026-04-01
2929
run: echo "${{ secrets.GHCR_PAT }}" | docker login ghcr.io -u ${{ secrets.GHCR_USR }} --password-stdin
3030
- name: Start containers
3131
run: docker compose -f "TransformerBeeClient/TransformerBeeClient.IntegrationTest/docker-compose.yml" up -d

.github/workflows/unittests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest]
13-
dotnet-version: ["6.0.201", "7.0.100", "8.0.100"]
13+
dotnet-version: ["9"]
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- name: Checkout code

TransformerBeeClient/ExampleAspNetCoreApplication.Test/ApplicationTest.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Net;
1+
using System.Net.Http.Json;
22
using System.Text.Json;
33
using System.Text.Json.Serialization;
44
using FluentAssertions;
@@ -20,10 +20,10 @@ public ApplicationTest(WebApplicationFactory<Program> factory)
2020
public async Task Test_That_Setup_Works_As_Designed()
2121
{
2222
var client = Factory.CreateDefaultClient();
23-
var response = await client.GetAsync("/talkToTransformerBee");
24-
response.StatusCode.Should().Be(HttpStatusCode.OK);
25-
var content = await response.Content.ReadAsStringAsync();
26-
var bo4e = JsonSerializer.Deserialize<BOneyComb>(content, new JsonSerializerOptions { Converters = { new JsonStringEnumConverter() } });
23+
var bo4e = await client.GetFromJsonAsync<BOneyComb>(
24+
"/talkToTransformerBee",
25+
new JsonSerializerOptions { Converters = { new JsonStringEnumConverter() } }
26+
);
2727
bo4e.Should().NotBeNull();
2828
}
2929
}

TransformerBeeClient/ExampleAspNetCoreApplication.Test/ExampleAspNetCoreApplication.Test.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

88
<IsPackable>false</IsPackable>
99
<IsTestProject>true</IsTestProject>
10+
<LangVersion>latest</LangVersion>
1011
</PropertyGroup>
1112

1213
<ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
global using Xunit;
1+
global using Xunit;

TransformerBeeClient/ExampleAspNetCoreApplication/ExampleAspNetCoreApplication.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
54
<Nullable>enable</Nullable>
65
<ImplicitUsings>enable</ImplicitUsings>
76
<PreserveCompilationContext>true</PreserveCompilationContext>
7+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
8+
<LangVersion>latest</LangVersion>
89
</PropertyGroup>
910
<ItemGroup>
1011
<ProjectReference Include="..\TransformerBeeClient\TransformerBeeClient.csproj"/>
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,42 @@
1+
using System.Text.Json;
2+
using System.Text.Json.Serialization;
13
using EDILibrary;
24
using TransformerBeeClient;
35

46
var builder = WebApplication.CreateBuilder(args);
57
builder.Services.AddHttpClient();
68

79
builder.Services.AddTransient<ITransformerBeeAuthenticator, NoAuthenticator>(); // Or you could use ClientIdClientSecretAuthenticator
8-
builder.Services.AddHttpClient("TransformerBee", client =>
9-
{
10-
client.BaseAddress = new Uri("http://localhost:5021/"); // or https://transformerstage.utilibee.io
11-
});
10+
builder.Services.AddHttpClient(
11+
"TransformerBee",
12+
client =>
13+
{
14+
client.BaseAddress = new Uri("http://localhost:5021/"); // or https://transformerstage.utilibee.io
15+
}
16+
);
1217
builder.Services.AddTransient<ICanConvertToBo4e, TransformerBeeRestClient>();
1318
builder.Services.AddTransient<ICanConvertToEdifact, TransformerBeeRestClient>();
1419

1520
var app = builder.Build();
1621

1722
app.MapGet("/", () => "I ❤ BO4E");
18-
app.MapGet("/talkToTransformerBee", async (ICanConvertToBo4e transformerBeeRestClient) =>
19-
{
20-
var bo4e = await transformerBeeRestClient.ConvertToBo4e(
21-
"UNA:+,? 'UNB+UNOC:3+9912345789012:500+9909876543210:500+230703:1059+ASDFHGJ'UNH+11223344556678+UTILMD:D:11A:UN:S1.1'BGM+E01+918273746512345678901'DTM+137:202306300558?+00:303'NAD+MS+9912345789012::293'NAD+MR+9909876543210::293'IDE+24+918273746512345678901'IMD++Z36+Z13'DTM+92:202212312300?+00:303'STS+7++E01'LOC+Z16+78889918283'LOC+Z17+DE0000111122223333444455556667778'RFF+Z13:55001'SEQ+Z01'CCI+Z30++Z07'CCI+Z19++11X0-0000-0116-J'CCI+++Z15'CCI+++Z88'CAV+Z74:::Z09'CAV+Z73:::Z11'SEQ+Z12'QTY+Z16:0:P1'SEQ+Z03'CCI+++E13'CAV+Z30:::788811123'SEQ+Z75'CCI+Z61++ZG1'NAD+Z09+++Schaefer:Ulrike:::Frau:Z01'NAD+Z04+++Schaefer:Ulrike:::Frau:Z01+Flughafenstrasse::64+Vilseck++92247+DE'NAD+DP++++Flughafenstrasse::64+Vilseck++92247+DE'NAD+Z05+++Schaefer:Ulrike:::Frau:Z01+Flughafenstrasse::64+Vilseck++92247+DE'UNT+31+11223344556678'UNZ+1+ASDFHGJ'",
22-
EdifactFormatVersion.FV2310);
23-
return bo4e.Single().Transaktionen.Single();
24-
});
23+
app.MapGet(
24+
"/talkToTransformerBee",
25+
async (HttpContext context, ICanConvertToBo4e transformerBeeRestClient) =>
26+
{
27+
var bo4e = await transformerBeeRestClient.ConvertToBo4e(
28+
"UNA:+,? 'UNB+UNOC:3+9912345789012:500+9909876543210:500+230703:1059+ASDFHGJ'UNH+11223344556678+UTILMD:D:11A:UN:S1.1'BGM+E01+918273746512345678901'DTM+137:202306300558?+00:303'NAD+MS+9912345789012::293'NAD+MR+9909876543210::293'IDE+24+918273746512345678901'IMD++Z36+Z13'DTM+92:202212312300?+00:303'STS+7++E01'LOC+Z16+78889918283'LOC+Z17+DE0000111122223333444455556667778'RFF+Z13:55001'SEQ+Z01'CCI+Z30++Z07'CCI+Z19++11X0-0000-0116-J'CCI+++Z15'CCI+++Z88'CAV+Z74:::Z09'CAV+Z73:::Z11'SEQ+Z12'QTY+Z16:0:P1'SEQ+Z03'CCI+++E13'CAV+Z30:::788811123'SEQ+Z75'CCI+Z61++ZG1'NAD+Z09+++Schaefer:Ulrike:::Frau:Z01'NAD+Z04+++Schaefer:Ulrike:::Frau:Z01+Flughafenstrasse::64+Vilseck++92247+DE'NAD+DP++++Flughafenstrasse::64+Vilseck++92247+DE'NAD+Z05+++Schaefer:Ulrike:::Frau:Z01+Flughafenstrasse::64+Vilseck++92247+DE'UNT+31+11223344556678'UNZ+1+ASDFHGJ'",
29+
EdifactFormatVersion.FV2310
30+
);
31+
context.Response.ContentType = System.Net.Mime.MediaTypeNames.Application.Json;
32+
var result = bo4e.Single().Transaktionen.Single();
33+
var json = JsonSerializer.Serialize(
34+
result,
35+
new JsonSerializerOptions() { Converters = { new JsonStringEnumConverter() } }
36+
);
37+
await context.Response.WriteAsync(json);
38+
}
39+
);
2540
app.Run();
2641

27-
public partial class Program
28-
{
29-
} // required for integration testing; If you miss this the test will complain, that it cannot find a 'testhost.deps.json'
42+
public partial class Program { } // required for integration testing; If you miss this the test will complain, that it cannot find a 'testhost.deps.json'

TransformerBeeClient/TransformerBeeClient.IntegrationTest/Bo4eToEdifactTests.cs

+9-6
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,19 @@ public Bo4eToEdifactTests(ClientFixture clientFixture)
2525
public async Task BOneyComb_Can_Be_Converted_To_Edifact()
2626
{
2727
var httpClientFactory = _client.HttpClientFactory;
28-
ICanConvertToEdifact client = new TransformerBeeRestClient(httpClientFactory, _authenticator);
28+
ICanConvertToEdifact client = new TransformerBeeRestClient(
29+
httpClientFactory,
30+
_authenticator
31+
);
2932
var boneyCombString = await File.ReadAllTextAsync("TestEdifacts/FV2310/55001.json");
3033
var deserializerOptions = new JsonSerializerOptions
3134
{
32-
Converters =
33-
{
34-
new JsonStringEnumConverter()
35-
}
35+
Converters = { new JsonStringEnumConverter() },
3636
};
37-
var boneyComb = System.Text.Json.JsonSerializer.Deserialize<BOneyComb>(boneyCombString, deserializerOptions);
37+
var boneyComb = System.Text.Json.JsonSerializer.Deserialize<BOneyComb>(
38+
boneyCombString,
39+
deserializerOptions
40+
);
3841
boneyComb.Should().NotBeNull();
3942
var result = await client.ConvertToEdifact(boneyComb, EdifactFormatVersion.FV2310);
4043
result.Should().BeOfType<string>().And.StartWith("UNB+UNOC");

TransformerBeeClient/TransformerBeeClient.IntegrationTest/ClientFixture.cs

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@ public class ClientFixture : IClassFixture<ClientFixture>
1717
public ClientFixture()
1818
{
1919
var services = new ServiceCollection();
20-
services.AddHttpClient("TransformerBee", client =>
21-
{
22-
client.BaseAddress = new Uri("http://localhost:5021"); // Check docker-compose.yml
23-
});
20+
services.AddHttpClient(
21+
"TransformerBee",
22+
client =>
23+
{
24+
client.BaseAddress = new Uri("http://localhost:5021"); // Check docker-compose.yml
25+
}
26+
);
2427
var serviceProvider = services.BuildServiceProvider();
2528
ServiceCollection = services;
2629
HttpClientFactory = serviceProvider.GetService<IHttpClientFactory>();

TransformerBeeClient/TransformerBeeClient.IntegrationTest/ConnectionTests.cs

+11-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ namespace TransformerBeeClient.IntegrationTest;
99
/// </summary>
1010
public class ConnectionTests : IClassFixture<ClientFixture>
1111
{
12-
1312
private readonly ClientFixture _client;
1413
private readonly ITransformerBeeAuthenticator _authenticator;
1514

@@ -32,12 +31,18 @@ public async Task IsAvailable_Returns_True_If_Service_Is_Available()
3231
public async Task IsAvailable_Throws_Exception_If_Host_Is_Unavailable()
3332
{
3433
var services = new ServiceCollection();
35-
services.AddHttpClient("TransformerBee", client =>
36-
{
37-
client.BaseAddress = new Uri("http://localhost:1234"); // <-- no service running under this address
38-
});
34+
services.AddHttpClient(
35+
"TransformerBee",
36+
client =>
37+
{
38+
client.BaseAddress = new Uri("http://localhost:1234"); // <-- no service running under this address
39+
}
40+
);
3941
var serviceProvider = services.BuildServiceProvider();
40-
var client = new TransformerBeeRestClient(serviceProvider.GetService<IHttpClientFactory>(), _authenticator);
42+
var client = new TransformerBeeRestClient(
43+
serviceProvider.GetService<IHttpClientFactory>(),
44+
_authenticator
45+
);
4146
var checkIfIsAvailable = async () => await client.IsAvailable();
4247
await checkIfIsAvailable.Should().ThrowAsync<HttpRequestException>();
4348
}

TransformerBeeClient/TransformerBeeClient.IntegrationTest/EdifactToBo4eTests.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ public class EdifactToBo4eTestsWithAuthentication : IClassFixture<GithubActionCl
4545

4646
ITestOutputHelper _output;
4747

48-
public EdifactToBo4eTestsWithAuthentication(GithubActionClientFixture clientFixture, ITestOutputHelper output)
48+
public EdifactToBo4eTestsWithAuthentication(
49+
GithubActionClientFixture clientFixture,
50+
ITestOutputHelper output
51+
)
4952
{
5053
_client = clientFixture;
5154
_authenticationProvider = clientFixture.AuthenticationProvider;
@@ -61,7 +64,10 @@ public async Task Edifact_Can_Be_Converted_To_Bo4e_With_Authentication()
6164
}
6265
Skip.If(_authenticationProvider is null, "No authentication provider available");
6366
var httpClientFactory = _client.HttpClientFactory;
64-
ICanConvertToBo4e client = new TransformerBeeRestClient(httpClientFactory, _authenticationProvider);
67+
ICanConvertToBo4e client = new TransformerBeeRestClient(
68+
httpClientFactory,
69+
_authenticationProvider
70+
);
6571
var edifactString = await File.ReadAllTextAsync("TestEdifacts/FV2310/55001.edi");
6672
var result = await client.ConvertToBo4e(edifactString, EdifactFormatVersion.FV2310);
6773
result.Should().BeOfType<List<Marktnachricht>>();

TransformerBeeClient/TransformerBeeClient.IntegrationTest/GithubActionClientFixture.cs

+11-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,19 @@ public GithubActionClientFixture()
2424
return;
2525
}
2626
var services = new ServiceCollection();
27-
services.AddHttpClient("TransformerBee", client => { client.BaseAddress = new Uri("http://transformerstage.utilibee.io"); });
27+
services.AddHttpClient(
28+
"TransformerBee",
29+
client =>
30+
{
31+
client.BaseAddress = new Uri("http://transformerstage.utilibee.io");
32+
}
33+
);
2834
var serviceProvider = services.BuildServiceProvider();
2935
ServiceCollection = services;
3036
HttpClientFactory = serviceProvider.GetService<IHttpClientFactory>();
31-
AuthenticationProvider = new ClientIdClientSecretAuthenticator(clientId: clientId, clientSecret: clientSecret);
37+
AuthenticationProvider = new ClientIdClientSecretAuthenticator(
38+
clientId: clientId,
39+
clientSecret: clientSecret
40+
);
3241
}
3342
}

TransformerBeeClient/TransformerBeeClient.IntegrationTest/MweWithoutAspNetTest.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ internal class MyHttpClientFactory : IHttpClientFactory
1515
{
1616
public HttpClient CreateClient(string name)
1717
{
18-
return new HttpClient
19-
{
20-
BaseAddress = new Uri("http://localhost:5021")
21-
};
18+
return new HttpClient { BaseAddress = new Uri("http://localhost:5021") };
2219
}
2320
}
2421

@@ -28,6 +25,9 @@ public async Task Test_Transformer_Bee_Communication()
2825
IHttpClientFactory myFactory = new MyHttpClientFactory();
2926
ITransformerBeeAuthenticator myAuthenticator = new NoAuthenticator(); // or use ClientIdClientSecretAuthenticator
3027
var client = new TransformerBeeRestClient(myFactory, myAuthenticator);
31-
await client.ConvertToBo4e("UNA:+,? 'UNB+UNOC:3+9912345789012:500+9909876543210:500+230703:1059+ASDFHGJ'UNH+11223344556678+UTILMD:D:11A:UN:S1.1'BGM+E01+918273746512345678901'DTM+137:202306300558?+00:303'NAD+MS+9912345789012::293'NAD+MR+9909876543210::293'IDE+24+918273746512345678901'IMD++Z36+Z13'DTM+92:202212312300?+00:303'STS+7++E01'LOC+Z16+78889918283'LOC+Z17+DE0000111122223333444455556667778'RFF+Z13:55001'SEQ+Z01'CCI+Z30++Z07'CCI+Z19++11X0-0000-0116-J'CCI+++Z15'CCI+++Z88'CAV+Z74:::Z09'CAV+Z73:::Z11'SEQ+Z12'QTY+Z16:0:P1'SEQ+Z03'CCI+++E13'CAV+Z30:::788811123'SEQ+Z75'CCI+Z61++ZG1'NAD+Z09+++Schaefer:Ulrike:::Frau:Z01'NAD+Z04+++Schaefer:Ulrike:::Frau:Z01+Flughafenstrasse::64+Vilseck++92247+DE'NAD+DP++++Flughafenstrasse::64+Vilseck++92247+DE'NAD+Z05+++Schaefer:Ulrike:::Frau:Z01+Flughafenstrasse::64+Vilseck++92247+DE'UNT+31+11223344556678'UNZ+1+ASDFHGJ'", EdifactFormatVersion.FV2310);
28+
await client.ConvertToBo4e(
29+
"UNA:+,? 'UNB+UNOC:3+9912345789012:500+9909876543210:500+230703:1059+ASDFHGJ'UNH+11223344556678+UTILMD:D:11A:UN:S1.1'BGM+E01+918273746512345678901'DTM+137:202306300558?+00:303'NAD+MS+9912345789012::293'NAD+MR+9909876543210::293'IDE+24+918273746512345678901'IMD++Z36+Z13'DTM+92:202212312300?+00:303'STS+7++E01'LOC+Z16+78889918283'LOC+Z17+DE0000111122223333444455556667778'RFF+Z13:55001'SEQ+Z01'CCI+Z30++Z07'CCI+Z19++11X0-0000-0116-J'CCI+++Z15'CCI+++Z88'CAV+Z74:::Z09'CAV+Z73:::Z11'SEQ+Z12'QTY+Z16:0:P1'SEQ+Z03'CCI+++E13'CAV+Z30:::788811123'SEQ+Z75'CCI+Z61++ZG1'NAD+Z09+++Schaefer:Ulrike:::Frau:Z01'NAD+Z04+++Schaefer:Ulrike:::Frau:Z01+Flughafenstrasse::64+Vilseck++92247+DE'NAD+DP++++Flughafenstrasse::64+Vilseck++92247+DE'NAD+Z05+++Schaefer:Ulrike:::Frau:Z01+Flughafenstrasse::64+Vilseck++92247+DE'UNT+31+11223344556678'UNZ+1+ASDFHGJ'",
30+
EdifactFormatVersion.FV2310
31+
);
3232
}
3333
}

TransformerBeeClient/TransformerBeeClient.IntegrationTest/TransformerBeeClient.IntegrationTest.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
<IsPackable>false</IsPackable>
88
<IsTestProject>true</IsTestProject>
9-
<TargetFrameworks>net8.0;net6.0;net7.0</TargetFrameworks>
9+
<TargetFramework>net9.0</TargetFramework>
10+
<LangVersion>latest</LangVersion>
1011
</PropertyGroup>
1112

1213
<ItemGroup>

0 commit comments

Comments
 (0)