File tree 7 files changed +21
-23
lines changed
ServerlessWorkflow.Sdk.Builders
ServerlessWorkflow.Sdk.IO
tests/ServerlessWorkflow.Sdk.UnitTests
7 files changed +21
-23
lines changed Original file line number Diff line number Diff line change 16
16
jobs :
17
17
build :
18
18
runs-on : ubuntu-latest
19
- strategy :
20
- matrix :
21
- dotnet-version : ['9.0.x' ]
22
-
23
19
steps :
24
20
- name : Checkout
25
21
uses : actions/checkout@v3
@@ -32,10 +28,12 @@ jobs:
32
28
git fetch
33
29
git pull
34
30
35
- - name : Setup .NET ${{ matrix.dotnet-version }}
31
+ - name : Setup .NET
36
32
uses : actions/setup-dotnet@v2
37
33
with :
38
- dotnet-version : ${{ matrix.dotnet-version }}
34
+ dotnet-version : |
35
+ 8.0.x
36
+ 9.0.x
39
37
40
38
- name : Restore dependencies
41
39
run : dotnet restore "${{ env.SOLUTION }}"
Original file line number Diff line number Diff line change 17
17
- name : Setup .NET
18
18
uses : actions/setup-dotnet@v1
19
19
with :
20
- dotnet-version : 9.0.x
20
+ dotnet-version : |
21
+ 8.0.x
22
+ 9.0.x
21
23
- name : Restore dependencies
22
24
run : dotnet restore "${{ env.SOLUTION }}"
23
25
- name : Build
Original file line number Diff line number Diff line change 16
16
jobs :
17
17
build :
18
18
runs-on : ubuntu-latest
19
- strategy :
20
- matrix :
21
- dotnet-version : ['9.0.x' ]
22
-
23
19
steps :
24
20
- name : Checkout
25
21
uses : actions/checkout@v3
26
22
27
- - name : Setup .NET ${{ matrix.dotnet-version }}
23
+ - name : Setup .NET
28
24
uses : actions/setup-dotnet@v2
29
25
with :
30
- dotnet-version : ${{ matrix.dotnet-version }}
26
+ dotnet-version : |
27
+ 8.0.x
28
+ 9.0.x
31
29
32
30
- name : Restore dependencies
33
31
run : dotnet restore "${{ env.SOLUTION }}"
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework > net9.0</TargetFramework >
4
+ <TargetFrameworks >net8.0; net9.0</TargetFrameworks >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
<VersionPrefix >1.0.0</VersionPrefix >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework > net9.0</TargetFramework >
4
+ <TargetFrameworks >net8.0; net9.0</TargetFrameworks >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
<VersionPrefix >1.0.0</VersionPrefix >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework > net9.0</TargetFramework >
4
+ <TargetFrameworks >net8.0; net9.0</TargetFrameworks >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
<VersionPrefix >1.0.0</VersionPrefix >
33
33
34
34
<ItemGroup >
35
35
<PackageReference Include =" FluentValidation.DependencyInjectionExtensions" Version =" 11.11.0" />
36
- <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 9.0.1 " />
37
- <PackageReference Include =" Microsoft.Extensions.Http" Version =" 9.0.1 " />
38
- <PackageReference Include =" Neuroglia.Serialization.YamlDotNet" Version =" 4.19.0 " />
36
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 9.0.3 " />
37
+ <PackageReference Include =" Microsoft.Extensions.Http" Version =" 9.0.3 " />
38
+ <PackageReference Include =" Neuroglia.Serialization.YamlDotNet" Version =" 4.20.1 " />
39
39
<PackageReference Include =" Semver" Version =" 3.0.0" />
40
40
</ItemGroup >
41
41
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework > net9.0</TargetFramework >
4
+ <TargetFrameworks >net8.0; net9.0</TargetFrameworks >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
14
14
<PrivateAssets >all</PrivateAssets >
15
15
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
16
16
</PackageReference >
17
- <PackageReference Include =" FluentAssertions" Version =" 8.0 .1" />
18
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.12 .0" />
17
+ <PackageReference Include =" FluentAssertions" Version =" 8.1 .1" />
18
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.13 .0" />
19
19
<PackageReference Include =" xunit" Version =" 2.9.3" />
20
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.1 " >
20
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2 " >
21
21
<PrivateAssets >all</PrivateAssets >
22
22
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
23
23
</PackageReference >
You can’t perform that action at this time.
0 commit comments