Skip to content

Commit a7688df

Browse files
committed
cef.sdk.nuspec & friends used for cef.sdk.3.1650.1562-pre2 NuGet
This is what was used to build the cef.sdk.3.1650.1562-pre2 NuGet currently on staging.nuget.org It comes with extra DRYness which CefSharp.Core now relies on since the SHA a7590937 commit jornh/CefSharp@a759093 <CefSdkVer>cef.sdk.3.1650.1562-pre2</CefSdkVer> in cef.sdk.props does that Note: Contents in the CEF/ folder is currently still a manual cherrypick from building upstream CEF Resolution of this is tracked in #5 Former-commit-id: 2a52f02e08a3afebfe124a06b6ab14700e7d2497
1 parent f5bf56c commit a7688df

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

NuGet/cef.sdk.nuspec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
<id>cef.sdk</id>
55
<version>$version$</version>
66
<title>CEF SDK</title>
7-
<authors>The Chromium Embedded Framework Authors</authors>
7+
<authors>The CEF Authors</authors>
88
<owners>The CefSharp Authors</owners>
99
<projectUrl>https://github.com/cefsharp/cef-binary</projectUrl>
10-
<iconUrl>https://raw.github.com/cefsharp/cef-binary/native-nuget/NuGet/cef128x128.gif</iconUrl>
10+
<iconUrl>https://raw.github.com/cefsharp/cef-binary/master/NuGet/cef128x128.gif</iconUrl>
11+
<licenseUrl>https://raw.github.com/cefsharp/cef-binary/master/cef_binary_3.y.z_windows32/LICENSE.txt</licenseUrl>
1112
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1213
<description>CEF - Chromium Embedded Framework.
1314
NOTE: This package is maintained on behalf of the CEF authors by the CefSharp project at http://github.com/cefsharp/cef-binary</description>
@@ -19,5 +20,7 @@
1920
CEF/Chromium files
2021
-->
2122
<file src="..\CEF\**\*.*" target="CEF" />
23+
24+
<file src="cef.sdk.props" target="build" />
2225
</files>
2326
</package>

NuGet/cef.sdk.props

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Reference Condition="'$(Platform)' == 'x86'"
5+
Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.dll" />
6+
7+
<Reference Condition="'$(Platform)' == 'x64'"
8+
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.dll" />
9+
</ItemGroup>
10+
<PropertyGroup>
11+
<CefSdkVer>cef.sdk.3.1650.1562-pre2</CefSdkVer>
12+
</PropertyGroup>
13+
14+
</Project>

NuGet/pack.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
set version=3.1650.1562-pre0
1+
set version=3.1650.1562-pre2
22
NuGet pack cef.redist.nuspec -NoPackageAnalysis -Version %version%
33
NuGet pack cef.sdk.nuspec -NoPackageAnalysis -Version %version%

0 commit comments

Comments
 (0)