From 0b0487634c86b05a6a069ceb279a6851a460116c Mon Sep 17 00:00:00 2001 From: Alex Maitland Date: Sun, 4 Feb 2024 11:37:50 +1000 Subject: [PATCH] Create new chromiumembeddedframework.runtime.resources package - Contains locales Issue #93 --- .../chromiumembeddedframework.runtime.nuspec | 10 +----- ...embeddedframework.runtime.resources.nuspec | 36 +++++++++++++++++++ ...embeddedframework.runtime.resources.props} | 0 build.ps1 | 9 ++--- 4 files changed, 39 insertions(+), 16 deletions(-) create mode 100644 NuGet/chromiumembeddedframework.runtime.resources.nuspec rename NuGet/{chromiumembeddedframework.runtime.props => chromiumembeddedframework.runtime.resources.props} (100%) diff --git a/NuGet/chromiumembeddedframework.runtime.nuspec b/NuGet/chromiumembeddedframework.runtime.nuspec index ef1fd41..8ba6455 100644 --- a/NuGet/chromiumembeddedframework.runtime.nuspec +++ b/NuGet/chromiumembeddedframework.runtime.nuspec @@ -19,19 +19,11 @@ Chromium Embedded Framework (CEF) Release Distribution NOTE: This package is maintained on behalf of the CEF authors by the CefSharp project at http://github.com/cefsharp/cef-binary chrome chromium native embedded browser CEF nativepackage - Copyright © 2008-2021 + Copyright © 2008-2024 - - - - - - - - diff --git a/NuGet/chromiumembeddedframework.runtime.resources.nuspec b/NuGet/chromiumembeddedframework.runtime.resources.nuspec new file mode 100644 index 0000000..f4a3d3b --- /dev/null +++ b/NuGet/chromiumembeddedframework.runtime.resources.nuspec @@ -0,0 +1,36 @@ + + + + chromiumembeddedframework.runtime.resources + $version$ + The Chromium Embedded Framework Authors + The CefSharp Authors + https://github.com/cefsharp/cef-binary + images\cef128x128.png + LICENSE.txt + false + + + Chromium Embedded Framework (CEF) Release Distribution + NOTE: This package is maintained on behalf of the CEF authors by the CefSharp project at http://github.com/cefsharp/cef-binary + chrome chromium native embedded browser CEF nativepackage + Copyright © 2008-2024 + + + + + + + + + + + + + + diff --git a/NuGet/chromiumembeddedframework.runtime.props b/NuGet/chromiumembeddedframework.runtime.resources.props similarity index 100% rename from NuGet/chromiumembeddedframework.runtime.props rename to NuGet/chromiumembeddedframework.runtime.resources.props diff --git a/build.ps1 b/build.ps1 index 0cfe82f..be985b6 100644 --- a/build.ps1 +++ b/build.ps1 @@ -251,13 +251,7 @@ function Msvs if($null -eq $VSInstallPath -or !(Test-Path $VSInstallPath)) { - $VSInstallPath = & $global:VSwherePath -version $versionSearchStr -property installationPath -products 'Microsoft.VisualStudio.Product.BuildTools' - Write-Diagnostic "BuildTools $($VS_OFFICIAL_VER)InstallPath: $VSInstallPath" - - if($null -eq $VSInstallPath -or !(Test-Path $VSInstallPath)) - { - Die "Visual Studio $VS_OFFICIAL_VER was not found" - } + Die "Visual Studio $VS_OFFICIAL_VER was not found" } $VisualStudioVersion = "$VS_VER.0" @@ -449,6 +443,7 @@ function Nupkg # Meta Package . $Nuget pack nuget\chromiumembeddedframework.runtime.nuspec -NoPackageAnalysis -Version $CefPackageVersion -Properties 'Configuration=Release;' -OutputDirectory nuget + . $Nuget pack nuget\chromiumembeddedframework.runtime.resources.nuspec -NoPackageAnalysis -Version $CefPackageVersion -Properties 'Configuration=Release;' -OutputDirectory nuget # Build sdk $Filename = Resolve-Path ".\nuget\cef.sdk.props"