Commit c8dcf95 1 parent 42e4c5d commit c8dcf95 Copy full SHA for c8dcf95
File tree 5 files changed +17
-10
lines changed
5 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
build :
15
+ strategy :
16
+ matrix :
17
+ os : [ubuntu-latest, windows-latest, macos-latest]
15
18
16
- runs-on : ubuntu-latest
19
+ runs-on : ${{ matrix.os }}
17
20
18
21
steps :
19
22
- uses : actions/checkout@v4
22
25
uses : actions/setup-dotnet@v4
23
26
with :
24
27
dotnet-version : |
25
- 3.1.x
26
- 6.0.x
27
28
8.0.x
28
29
9.0.x
29
30
Original file line number Diff line number Diff line change 30
30
uses : actions/setup-dotnet@v4
31
31
with :
32
32
dotnet-version : |
33
- 3.1.x
34
- 6.0.x
35
33
8.0.x
36
34
9.0.x
37
35
41
39
run : dotnet build -c Release --no-restore
42
40
43
41
- name : Build documentation
44
- run : dotnet run -f net8 .0 -c Release --no-build
42
+ run : dotnet run -f net9 .0 -c Release --no-build
45
43
working-directory : Docs/SuperLinq.Docs
46
44
47
45
- name : Setup Pages
Original file line number Diff line number Diff line change 21
21
uses : actions/setup-dotnet@v4
22
22
with :
23
23
dotnet-version : |
24
- 3.1.x
25
- 6.0.x
26
24
8.0.x
27
25
9.0.x
28
26
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net47; net8.0;net9.0</TargetFrameworks >
4
+ <TargetFrameworks >net8.0;net9.0</TargetFrameworks >
5
5
6
6
<IsPackable >false</IsPackable >
7
7
<AnalysisLevel >latest-recommended</AnalysisLevel >
8
8
9
9
<PolySharpExcludeGeneratedTypes >System.Runtime.CompilerServices.ModuleInitializerAttribute</PolySharpExcludeGeneratedTypes >
10
10
</PropertyGroup >
11
11
12
+ <PropertyGroup Condition =" $([System.OperatingSystem]::IsWindows())" >
13
+ <TargetFrameworks >net47;$(TargetFrameworks)</TargetFrameworks >
14
+ <RuntimeIdentifiers >win-x86;win-x64</RuntimeIdentifiers >
15
+ </PropertyGroup >
16
+
12
17
<ItemGroup >
13
18
<ProjectReference Include =" ..\..\Source\SuperLinq\SuperLinq.csproj" />
14
19
<ProjectReference Include =" ..\..\Source\SuperLinq.Async\SuperLinq.Async.csproj" />
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net47; net8.0;net9.0</TargetFrameworks >
4
+ <TargetFrameworks >net8.0;net9.0</TargetFrameworks >
5
5
6
6
<IsPackable >false</IsPackable >
7
7
<AnalysisLevel >latest-recommended</AnalysisLevel >
8
8
9
9
<PolySharpExcludeGeneratedTypes >System.Runtime.CompilerServices.ModuleInitializerAttribute</PolySharpExcludeGeneratedTypes >
10
10
</PropertyGroup >
11
11
12
+ <PropertyGroup Condition =" $([System.OperatingSystem]::IsWindows())" >
13
+ <TargetFrameworks >net47;$(TargetFrameworks)</TargetFrameworks >
14
+ <RuntimeIdentifiers >win-x86;win-x64</RuntimeIdentifiers >
15
+ </PropertyGroup >
16
+
12
17
<ItemGroup >
13
18
<ProjectReference Include =" ..\..\Source\SuperLinq\SuperLinq.csproj" />
14
19
</ItemGroup >
You can’t perform that action at this time.
0 commit comments