We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bc4bcc commit 359b8eeCopy full SHA for 359b8ee
.azure-pipelines/sipsorcery-core.yml
@@ -27,6 +27,16 @@ variables:
27
buildConfiguration: 'Release'
28
29
steps:
30
+
31
+# Install required version of .NET.
32
+- task: UseDotNet@2
33
+ displayName: 'Use .NET6 sdk'
34
+ inputs:
35
+ packageType: sdk
36
+ version: 6.x
37
+ includePreviewVersions: true
38
+ installationPath: $(Agent.ToolsDirectory)/dotnet
39
40
#- task: NuGetToolInstaller@1
41
42
#- task: NuGetCommand@2
@@ -45,8 +55,7 @@ steps:
45
55
inputs:
46
56
command: test
47
57
projects: test/unit/SIPSorcery.UnitTests.csproj
48
- arguments: --framework netcoreapp3.1
49
-
58
+ arguments: --framework net6.0
50
59
#Reference: https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/test/vstest?view=azure-devops
51
60
#- task: VSTest@2
52
61
# inputs:
0 commit comments