File tree Expand file tree Collapse file tree 2 files changed +12
-20
lines changed Expand file tree Collapse file tree 2 files changed +12
-20
lines changed Original file line number Diff line number Diff line change @@ -43,20 +43,13 @@ jobs:
43
43
with :
44
44
fetch-depth : 0
45
45
46
- - name : Install .NET ${{ env.DotNet3Version }}
46
+ - name : Install .NET Core ${{ env.DotNet3Version }}, .NET ${{ env.DotNet6Version }}, and .NET ${{ env.DotNet7Version }}
47
47
uses : actions/setup-dotnet@v3
48
48
with :
49
- dotnet-version : ${{ env.DotNet3Version }}
50
-
51
- - name : Install .NET ${{ env.DotNet6Version }}
52
- uses : actions/setup-dotnet@v3
53
- with :
54
- dotnet-version : ${{ env.DotNet6Version }}
55
-
56
- - name : Install .NET ${{ env.DotNet7Version }}
57
- uses : actions/setup-dotnet@v3
58
- with :
59
- dotnet-version : ${{ env.DotNet7Version }}
49
+ dotnet-version : |
50
+ ${{ env.DotNet3Version }}
51
+ ${{ env.DotNet6Version }}
52
+ ${{ env.DotNet7Version }}
60
53
61
54
- name : Build Solution
62
55
run : dotnet build "/Property:Platform=${{ env.BuildPlatform }};Configuration=${{ env.BuildConfiguration }}" "/BinaryLogger:${{ env.ArtifactsDirectoryName }}/build.binlog"
Original file line number Diff line number Diff line change 15
15
ContinuousIntegrationBuild : ' true'
16
16
DotNet3Version : ' 3.x'
17
17
DotNet6Version : ' 6.x'
18
+ DotNet7Version : ' 6.x'
18
19
19
20
jobs :
20
21
build :
@@ -27,15 +28,13 @@ jobs:
27
28
with :
28
29
fetch-depth : 0
29
30
30
- - name : Install .NET Core ${{ env.DotNet3Version }}
31
- uses : actions/setup-dotnet@v1
31
+ - name : Install .NET Core ${{ env.DotNet3Version }}, .NET ${{ env.DotNet6Version }}, and .NET ${{ env.DotNet7Version }}
32
+ uses : actions/setup-dotnet@v3
32
33
with :
33
- dotnet-version : ${{ env.DotNet3Version }}
34
-
35
- - name : Install .NET ${{ env.DotNet6Version }}
36
- uses : actions/setup-dotnet@v1
37
- with :
38
- dotnet-version : ${{ env.DotNet6Version }}
34
+ dotnet-version : |
35
+ ${{ env.DotNet3Version }}
36
+ ${{ env.DotNet6Version }}
37
+ ${{ env.DotNet7Version }}
39
38
40
39
- name : Build Solution
41
40
run : dotnet build "/Property:Platform=${{ env.BuildPlatform }};Configuration=${{ env.BuildConfiguration }}" "/BinaryLogger:${{ env.ArtifactsDirectoryName }}\build.binlog"
You can’t perform that action at this time.
0 commit comments