forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCefSharp.Wpf.nuspec
44 lines (40 loc) · 2.07 KB
/
CefSharp.Wpf.nuspec
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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>CefSharp.Wpf</id>
<version>$version$</version>
<authors>The CefSharp Authors</authors>
<owners>The CefSharp Authors</owners>
<projectUrl>https://github.com/cefsharp/cefsharp</projectUrl>
<licenseUrl>https://raw.github.com/cefsharp/CefSharp/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>The CefSharp Chromium-based browser component (WPF control).</description>
<tags>wpf chrome browser</tags>
<copyright>Copyright © The CefSharp Authors</copyright>
<dependencies>
<group targetFramework=".NETFramework4.5.2">
<dependency id="CefSharp.Common" version="[$version$]" />
</group>
</dependencies>
<releaseNotes>
<![CDATA[
See https://github.com/cefsharp/CefSharp/releases/tag/v$version$ for release notes including Known Issues, Breaking Changes, Bugs Fixed, new features.
Important you read the release notes to see what's changed in this version.
]]>
</releaseNotes>
</metadata>
<files>
<!-- Cannot put these inside lib\net40 etc, since there are both x86 and x64 versions which we must distinguish between. We
solve this using a .props file instead. -->
<file src="..\CefSharp.Wpf\bin\x86\Release\CefSharp.Wpf.dll" target="CefSharp\x86" />
<file src="..\CefSharp.Wpf\bin\x86\Release\CefSharp.Wpf.xml" target="CefSharp\x86" />
<file src="..\CefSharp.Wpf\bin\x86\Release\CefSharp.Wpf.pdb" target="CefSharp\x86" />
<file src="..\CefSharp.Wpf\bin\x64\Release\CefSharp.Wpf.xml" target="CefSharp\x64" />
<file src="..\CefSharp.Wpf\bin\x64\Release\CefSharp.Wpf.dll" target="CefSharp\x64" />
<file src="..\CefSharp.Wpf\bin\x64\Release\CefSharp.Wpf.pdb" target="CefSharp\x64" />
<file src="CefSharp.Wpf.props" target="build" />
<file src="CefSharp.Wpf.targets" target="build" />
<file src="Readme.txt" target="" />
<file src="..\CefSharp.Wpf\**\*.cs" target="src\CefSharp.Wpf" />
</files>
</package>