This repository was archived by the owner on Nov 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Original file line number Diff line number Diff line change 13
13
vmImage : ' ubuntu-latest'
14
14
timeoutInMinutes : 60
15
15
steps :
16
+ - task : UseDotNet@2
17
+ displayName : ' Use .NET Core 5.0 SDK'
18
+ inputs :
19
+ version : 5.0.x
20
+ performMultiLevelLookup : true
21
+ installationPath : $(Agent.ToolsDirectory)/dotnet
22
+ - task : UseDotNet@2
23
+ displayName : ' Use .NET Core 2.1 SDK'
24
+ inputs :
25
+ version : 2.1.x
26
+ performMultiLevelLookup : true
27
+ installationPath : $(Agent.ToolsDirectory)/dotnet
28
+ - task : UseDotNet@2
29
+ displayName : ' Use .NET Core 3.1 SDK'
30
+ inputs :
31
+ version : 3.1.x
32
+ performMultiLevelLookup : true
33
+ installationPath : $(Agent.ToolsDirectory)/dotnet
16
34
- task : Docker@1
17
35
displayName : ' Start TPM Simulator'
18
36
inputs :
24
42
127.0.0.1:2321:2321
25
43
127.0.0.1:2322:2322
26
44
restartPolicy : unlessStopped
27
-
28
45
- powershell : ./build.ps1 -clean -configuration Release -build -run
29
46
displayName : build and run
30
47
env :
49
66
vmImage : ' windows-latest'
50
67
timeoutInMinutes : 60
51
68
steps :
69
+ - task : UseDotNet@2
70
+ displayName : ' Use .NET Core 5.0 SDK'
71
+ inputs :
72
+ version : 5.0.x
73
+ performMultiLevelLookup : true
74
+ installationPath : $(Agent.ToolsDirectory)/dotnet
75
+ - task : UseDotNet@2
76
+ displayName : ' Use .NET Core 2.1 SDK'
77
+ inputs :
78
+ version : 2.1.x
79
+ performMultiLevelLookup : true
80
+ installationPath : $(Agent.ToolsDirectory)/dotnet
81
+ - task : UseDotNet@2
82
+ displayName : ' Use .NET Core 3.1 SDK'
83
+ inputs :
84
+ version : 3.1.x
85
+ performMultiLevelLookup : true
86
+ installationPath : $(Agent.ToolsDirectory)/dotnet
52
87
- powershell : ./build.ps1 -clean -configuration Release -run
53
88
displayName : build and run
54
89
env :
You can’t perform that action at this time.
0 commit comments