@@ -40,12 +40,11 @@ $script:BuildInfoPath = "src/PowerShellEditorServices.Hosting/BuildInfo.cs"
40
40
41
41
$script :NetFramework = @ {
42
42
PS51 = ' net462'
43
- PS72 = ' net6.0'
44
43
PS74 = ' net8.0'
45
44
Standard = ' netstandard2.0'
46
45
}
47
46
48
- $script :HostCoreOutput = " src/PowerShellEditorServices.Hosting/bin/$Configuration /$ ( $script :NetFramework.PS72 ) /publish"
47
+ $script :HostCoreOutput = " src/PowerShellEditorServices.Hosting/bin/$Configuration /$ ( $script :NetFramework.PS74 ) /publish"
49
48
$script :HostDeskOutput = " src/PowerShellEditorServices.Hosting/bin/$Configuration /$ ( $script :NetFramework.PS51 ) /publish"
50
49
$script :PsesOutput = " src/PowerShellEditorServices/bin/$Configuration /$ ( $script :NetFramework.Standard ) /publish"
51
50
@@ -128,7 +127,7 @@ task RestorePsesModules -If (-not (Test-Path "module/PSReadLine") -or -not (Test
128
127
Task Build FindDotNet, CreateBuildInfo, RestorePsesModules, {
129
128
Write-Build DarkGreen " Building PowerShellEditorServices"
130
129
Invoke-BuildExec { & dotnet publish $script :dotnetBuildArgs ./ src/ PowerShellEditorServices/ PowerShellEditorServices.csproj -f $script :NetFramework.Standard }
131
- Invoke-BuildExec { & dotnet publish $script :dotnetBuildArgs ./ src/ PowerShellEditorServices.Hosting/ PowerShellEditorServices.Hosting.csproj -f $script :NetFramework.PS72 }
130
+ Invoke-BuildExec { & dotnet publish $script :dotnetBuildArgs ./ src/ PowerShellEditorServices.Hosting/ PowerShellEditorServices.Hosting.csproj -f $script :NetFramework.PS74 }
132
131
133
132
if (-not $script :IsNix ) {
134
133
Invoke-BuildExec { & dotnet publish $script :dotnetBuildArgs ./ src/ PowerShellEditorServices.Hosting/ PowerShellEditorServices.Hosting.csproj -f $script :NetFramework.PS51 }
@@ -201,11 +200,6 @@ Task TestPS74 Build, SetupHelpForTests, {
201
200
Invoke-BuildExec { & dotnet $script :dotnetTestArgs $script :NetFramework.PS74 }
202
201
}
203
202
204
- Task TestPS72 Build, SetupHelpForTests, {
205
- Set-Location ./ test/ PowerShellEditorServices.Test/
206
- Invoke-BuildExec { & dotnet $script :dotnetTestArgs $script :NetFramework.PS72 }
207
- }
208
-
209
203
Task TestPS51 - If (-not $script :IsNix ) Build, SetupHelpForTests, {
210
204
Set-Location ./ test/ PowerShellEditorServices.Test/
211
205
# TODO: See https://github.com/dotnet/sdk/issues/18353 for x64 test host
@@ -299,7 +293,7 @@ Task TestE2EPowerShellCLM -If (-not $script:IsNix) Build, SetupHelpForTests, {
299
293
}
300
294
}
301
295
302
- Task Test TestPS72 , TestPS74, TestE2EPwsh, TestPS51, TestE2EPowerShell
296
+ Task Test TestPS74, TestE2EPwsh, TestPS51, TestE2EPowerShell
303
297
304
298
Task TestFull Test, TestE2EDaily, TestE2EPwshCLM, TestE2EPowerShellCLM
305
299
0 commit comments