File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -81,3 +81,15 @@ steps:
81
81
inputs :
82
82
artifactName : ' SideBySide-net5.0-$(Agent.OS)'
83
83
targetPath : ' tests/SideBySide/bin/Release/net5.0/publish'
84
+
85
+ - task : DotNetCoreCLI@2
86
+ displayName : ' Publish SideBySide (6.0)'
87
+ inputs :
88
+ command : ' publish'
89
+ arguments : ' -c Release -f net6.0 --no-build tests/SideBySide/SideBySide.csproj'
90
+ publishWebProjects : false
91
+ zipAfterPublish : false
92
+ - task : PublishPipelineArtifact@0
93
+ inputs :
94
+ artifactName : ' SideBySide-net6.0-$(Agent.OS)'
95
+ targetPath : ' tests/SideBySide/bin/Release/net6.0/publish'
Original file line number Diff line number Diff line change @@ -43,26 +43,26 @@ steps:
43
43
image : ${{ parameters.image }}
44
44
unsupportedFeatures : ${{ parameters.unsupportedFeatures }}
45
45
connectionString : ' server=localhost;port=3300;user id=mysqltest;password=test;database=mysqltest;ssl mode=required;DefaultCommandTimeout=3600;certificate file=$(Build.Repository.LocalPath)/.ci/server/certs/ssl-client.pfx'
46
- platform : ' netcoreapp3.1 '
46
+ platform : ' net5.0 '
47
47
description : ' SSL'
48
48
- template : ' sidebyside-test-steps.yml'
49
49
parameters :
50
50
image : ${{ parameters.image }}
51
51
unsupportedFeatures : ${{ parameters.unsupportedFeatures }}
52
52
connectionString : ' server=localhost;port=3300;user id=mysqltest;password=test;database=mysqltest;ssl mode=none;UseCompression=True;DefaultCommandTimeout=3600'
53
- platform : ' netcoreapp3.1 '
53
+ platform : ' net5.0 '
54
54
description : ' Compression'
55
55
- template : ' sidebyside-test-steps.yml'
56
56
parameters :
57
57
image : ${{ parameters.image }}
58
58
unsupportedFeatures : ${{ parameters.unsupportedFeatures }}
59
59
connectionString : ' server=localhost;port=3300;user id=mysqltest;password=test;database=mysqltest;ssl mode=none;DefaultCommandTimeout=3600'
60
- platform : ' net5 .0'
60
+ platform : ' net6 .0'
61
61
description : ' No SSL'
62
62
- template : ' sidebyside-test-steps.yml'
63
63
parameters :
64
64
image : ${{ parameters.image }}
65
65
unsupportedFeatures : ${{ parameters.unsupportedFeatures }}
66
66
connectionString : ' server=localhost;port=3300;user id=mysqltest;password=test;database=mysqltest;ssl mode=required;DefaultCommandTimeout=3600;certificate file=$(Build.Repository.LocalPath)/.ci/server/certs/ssl-client.pfx'
67
- platform : ' net5 .0'
67
+ platform : ' net6 .0'
68
68
description : ' SSL'
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup Condition =" '$(Configuration)' != 'Baseline' " >
4
- <TargetFrameworks >net452;net461;net472;netcoreapp1.1.2;netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks >
4
+ <TargetFrameworks >net452;net461;net472;netcoreapp1.1.2;netcoreapp2.1;netcoreapp3.1;net5.0;net6.0 </TargetFrameworks >
5
5
</PropertyGroup >
6
6
7
7
<PropertyGroup Condition =" '$(Configuration)' == 'Baseline' " >
You can’t perform that action at this time.
0 commit comments