winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 32ee81b430f5bce2546dcd741ff1bc7792db8ec0
parent f892d9b4d0ba6ea555318925aafb29433fadc2ae
Author: Ryan Fu <69221034+ryfu-msft@users.noreply.github.com>
Date:   Mon,  5 Dec 2022 12:36:31 -0800

Update powershell module target framework to 4.8 (#2741)


Diffstat:
Msrc/PowerShell/Microsoft.WinGet.Client/Copy-PlatformBinaries.ps1 | 4++--
Msrc/PowerShell/Microsoft.WinGet.Client/Microsoft.WinGet.Client.csproj | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/PowerShell/Microsoft.WinGet.Client/Copy-PlatformBinaries.ps1 b/src/PowerShell/Microsoft.WinGet.Client/Copy-PlatformBinaries.ps1 @@ -30,7 +30,7 @@ param ( $OutDir ) -# src\x64\Release\Project\net461\Library.Desktop.dll +# src\x64\Release\Project\net48\Library.Desktop.dll # src\x64\Release\Project\net6.0-windows10.0.22000.0\Library.Core.dll # build\Module\x64\Desktop\Library.Desktop.dll @@ -38,7 +38,7 @@ param ( $CoreFramework = 'net6.0-windows10.0.22000.0' $CoreFolderName = 'Core' -$DesktopFramework = 'net461' +$DesktopFramework = 'net48' $DesktopFolderName = 'Desktop' $ProjectName = 'Microsoft.WinGet.Client' diff --git a/src/PowerShell/Microsoft.WinGet.Client/Microsoft.WinGet.Client.csproj b/src/PowerShell/Microsoft.WinGet.Client/Microsoft.WinGet.Client.csproj @@ -3,7 +3,7 @@ <PropertyGroup> <TargetWindowsVersion>10.0.22000.0</TargetWindowsVersion> <CoreFramework>net6.0-windows$(TargetWindowsVersion)</CoreFramework> - <DesktopFramework>net461</DesktopFramework> + <DesktopFramework>net48</DesktopFramework> </PropertyGroup> <PropertyGroup>