Skip to content

Commit 8b07b43

Browse files
committed
Revert "Updated WPF files copy macro from netcoreapp3.0 to netcoreapp5.0"
This reverts commit f56c007.
1 parent f56c007 commit 8b07b43

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

eng/copy-wpf.ps1

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ function CopyNativeBinariesToLocation($location, $localBinLocation)
5151
function CopyManagedBinariesToLocation($location, $localBinLocation)
5252
{
5353
# Layout of where the managed binaries looks something like this:
54-
# x86 - artifacts\packaging\Debug\Microsoft.DotNet.Wpf.GitHub\lib\netcoreapp5.0
55-
# x64 - artifacts\packaging\Debug\x64\Microsoft.DotNet.Wpf.GitHub\lib\netcoreapp5.0
54+
# x86 - artifacts\packaging\Debug\Microsoft.DotNet.Wpf.GitHub\lib\netcoreapp3.0
55+
# x64 - artifacts\packaging\Debug\x64\Microsoft.DotNet.Wpf.GitHub\lib\netcoreapp3.0
5656

5757
$PackageName = "Microsoft.DotNet.Wpf.GitHub"
58-
$BinaryLocationInPackage = "netcoreapp5.0"
58+
$BinaryLocationInPackage = "netcoreapp3.0"
5959
CopyPackagedBinaries $location $localBinLocation $PackageName $BinaryLocationInPackage
6060
}
6161

@@ -140,7 +140,7 @@ else
140140
$runtimeIdentifer = "win-$arch"
141141
$location = [System.IO.Path]::Combine($destination, "bin\Debug\netcoreapp3.0", $runtimeIdentifer, "publish")
142142
if(![System.IO.Directory]::Exists($location))
143-
{
143+
{
144144
Write-Host "Location unavailable: " $location -ForegroundColor Red
145145
return
146146
}

0 commit comments

Comments
 (0)