-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathCefSharp.Common.nuspec
More file actions
70 lines (61 loc) · 4.69 KB
/
CefSharp.Common.nuspec
File metadata and controls
70 lines (61 loc) · 4.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>CefSharp.Common</id>
<version>$version$</version>
<authors>The CefSharp Authors</authors>
<owners>The CefSharp Authors</owners>
<projectUrl>https://github.com/cefsharp/CefSharp</projectUrl>
<repository type="git" url="https://github.com/cefsharp/CefSharp.git" branch="$Branch$" commit="$CommitSha$" />
<license type="file">LICENSE</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>The CefSharp Chromium-based browser component ('Core' and common 'Element' components, needed by both WPF and WinForms).</description>
<tags>chrome browser</tags>
<copyright>Copyright © The CefSharp Authors</copyright>
<dependencies>
<group targetFramework=".NETFramework4.6.2">
<dependency id="chromiumembeddedframework.runtime.win-x86" version="[$RedistVersion$]" />
<dependency id="chromiumembeddedframework.runtime.win-x64" version="[$RedistVersion$]" />
</group>
</dependencies>
</metadata>
<files>
<file src="..\CefSharp\bin\Release\CefSharp.dll" target="lib\net462"/>
<file src="..\CefSharp\bin\Release\CefSharp.xml" target="lib\net462"/>
<file src="..\CefSharp\bin\Release\CefSharp.pdb" target="lib\net462"/>
<file src="..\CefSharp.Core\bin\Release\CefSharp.Core.dll" target="lib\net462"/>
<file src="..\CefSharp.Core\bin\Release\CefSharp.Core.xml" target="lib\net462"/>
<file src="..\CefSharp.Core\bin\Release\CefSharp.Core.pdb" target="lib\net462"/>
<!-- Cannot put these inside lib\net462 etc, since there are both x86 and x64 versions which we must distinguish between. We
solve this using a .targets file instead to copy them based on PlatformTarget -->
<!-- Common CefSharp stuff (shared between both WPF, Offscreen and WinForms) -->
<file src="..\CefSharp.Core.Runtime\bin\Win32\Release\CefSharp.Core.Runtime.dll" target="CefSharp\x86"/>
<file src="..\CefSharp.Core.Runtime\bin\Win32\Release\CefSharp.Core.Runtime.xml" target="CefSharp\x86"/>
<file src="..\CefSharp.Core.Runtime\bin\Win32\Release\CefSharp.Core.Runtime.pdb" target="CefSharp\x86"/>
<file src="..\CefSharp.Core.Runtime\bin\x64\Release\CefSharp.Core.Runtime.dll" target="CefSharp\x64"/>
<file src="..\CefSharp.Core.Runtime\bin\x64\Release\CefSharp.Core.Runtime.xml" target="CefSharp\x64"/>
<file src="..\CefSharp.Core.Runtime\bin\x64\Release\CefSharp.Core.Runtime.pdb" target="CefSharp\x64"/>
<file src="..\CefSharp.BrowserSubprocess\bin\x86\Release\CefSharp.BrowserSubprocess.Core.dll" target="CefSharp\x86"/>
<file src="..\CefSharp.BrowserSubprocess\bin\x86\Release\CefSharp.BrowserSubprocess.Core.pdb" target="CefSharp\x86"/>
<file src="..\CefSharp.BrowserSubprocess\bin\x86\Release\CefSharp.BrowserSubprocess.exe" target="CefSharp\x86"/>
<file src="..\CefSharp.BrowserSubprocess\bin\x86\Release\CefSharp.BrowserSubprocess.pdb" target="CefSharp\x86"/>
<file src="..\CefSharp.BrowserSubprocess\bin\x64\Release\CefSharp.BrowserSubprocess.Core.dll" target="CefSharp\x64"/>
<file src="..\CefSharp.BrowserSubprocess\bin\x64\Release\CefSharp.BrowserSubprocess.Core.pdb" target="CefSharp\x64"/>
<file src="..\CefSharp.BrowserSubprocess\bin\x64\Release\CefSharp.BrowserSubprocess.exe" target="CefSharp\x64"/>
<file src="..\CefSharp.BrowserSubprocess\bin\x64\Release\CefSharp.BrowserSubprocess.pdb" target="CefSharp\x64"/>
<file src="CefSharp.Common.props" target="buildTransitive" />
<file src="CefSharp.Common.targets" target="buildTransitive" />
<file src="CefSharp.Common.import.props" target="build\CefSharp.Common.props" />
<file src="CefSharp.Common.import.targets" target="build\CefSharp.Common.targets" />
<file src="CefSharp.Common.app.config.x86.transform" target="build\app.config.x86.transform" />
<file src="CefSharp.Common.app.config.x64.transform" target="build\app.config.x64.transform" />
<file src="..\LICENSE" target="LICENSE" />
<file src="..\CefSharp\**\*.cs" target="src\CefSharp" />
<file src="..\CefSharp.Core\**\*.cs" target="src\CefSharp.Core" />
<file src="..\CefSharp.Core.Runtime\**\*.h" target="src\CefSharp.Core.Runtime" />
<file src="..\CefSharp.Core.Runtime\**\*.cpp" target="src\CefSharp.Core.Runtime" />
<file src="..\CefSharp.BrowserSubprocess.Core\**\*.h" target="src\CefSharp.BrowserSubprocess.Core" exclude="packages\**;obj\**" />
<file src="..\CefSharp.BrowserSubprocess.Core\**\*.cpp" target="src\CefSharp.BrowserSubprocess.Core" exclude="packages\**;obj\**" />
<file src="..\CefSharp.BrowserSubprocess\**\*.cs" target="src\CefSharp.BrowserSubprocess" exclude="packages\**;obj\**" />
</files>
</package>