File tree Expand file tree Collapse file tree 2 files changed +18
-6
lines changed
tests/MongoDB.Analyzer.Tests/Infrastructure Expand file tree Collapse file tree 2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ functions:
67
67
set -o xtrace
68
68
export PACKAGE_VERSION="$PACKAGE_VERSION"
69
69
export PROJECT_DIRECTORY="$PROJECT_DIRECTORY"
70
- export DOTNET_SDK_PATH="$DOTNET_SDK_PATH"
70
+ export DOTNET_SDK_PATH="$DOTNET_SDK_PATH"
71
71
export PATH="$DOTNET_SDK_PATH:$MONGODB_BINARIES:$PATH"
72
72
export PROJECT="${project}"
73
73
EOT
@@ -245,6 +245,10 @@ axes:
245
245
display_name : " 2.25.0"
246
246
variables :
247
247
DRIVER_VERSION : " 2.25.0"
248
+ - id : " 2.21"
249
+ display_name : " 2.21.0"
250
+ variables :
251
+ DRIVER_VERSION : " 2.21.0"
248
252
- id : " 2.18.0"
249
253
display_name : " 2.18.0"
250
254
variables :
Original file line number Diff line number Diff line change @@ -28,12 +28,20 @@ static DriverVersionHelper()
28
28
29
29
if ( driverVersion != null )
30
30
{
31
- NuGetVersion . Parse ( "2.12.4" ) ,
32
- NuGetVersion . Parse ( "2.18.0" ) ,
33
- NuGetVersion . Parse ( "2.19.0" ) ,
34
- NuGetVersion . Parse ( "2.21.0" ) ,
35
- NuGetVersion . Parse ( "2.25.0" )
31
+ DriverVersions = new [ ] { NuGetVersion . Parse ( driverVersion ) } ;
32
+ }
33
+ else
34
+ {
35
+ DriverVersions = new [ ]
36
+ {
37
+ NuGetVersion . Parse ( "2.12.4" ) ,
38
+ NuGetVersion . Parse ( "2.18.0" ) ,
39
+ NuGetVersion . Parse ( "2.19.0" ) ,
40
+ NuGetVersion . Parse ( "2.21.0" ) ,
41
+ NuGetVersion . Parse ( "2.25.0" )
42
+ } ;
36
43
} ;
44
+ }
37
45
38
46
public static NuGetVersion [ ] FilterVersionForRange ( string versionRange )
39
47
{
You can’t perform that action at this time.
0 commit comments