From 04db823d701250e2f929a3219ad6f813c52b8ace Mon Sep 17 00:00:00 2001 From: Lex Li Date: Tue, 31 Oct 2023 14:08:28 -0400 Subject: [PATCH] Removed obsolete step. --- .github/workflows/dotnetcore.yml | 1 - patch-winfx.ps1 | 17 ----------------- 2 files changed, 18 deletions(-) delete mode 100644 patch-winfx.ps1 diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index ee5bada7..6f2425e1 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -43,7 +43,6 @@ jobs: run: | dotnet --info set -e - sudo pwsh -file patch-winfx.ps1 /home/runner/.dotnet/sdk/3.1.101 pwsh -file release.ps1 Release - name: Test shell: pwsh diff --git a/patch-winfx.ps1 b/patch-winfx.ps1 deleted file mode 100644 index 9d5a1dd9..00000000 --- a/patch-winfx.ps1 +++ /dev/null @@ -1,17 +0,0 @@ -[CmdletBinding()] -param( - [Parameter(Position = 0)] - [string] $Path -) - -Write-Host $Ppath - -$winfx = "$path/Sdks/Microsoft.NET.Sdk.WindowsDesktop/targets/Microsoft.WinFX.props" -if (-not (Test-Path $winfx)) { - Write-Host "Didn't find $winfx" - $winfx2 = "$path/Sdks/Microsoft.NET.Sdk.WindowsDesktop/targets/Microsoft.WinFx.props" - if (Test-Path $winfx2) { - Write-Host "Found $winfx2. Copy it as $winfx" - Copy-Item $winfx2 $winfx - } -}