forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
74 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>CefSharp.Core</id> | ||
<version>$version$</version> | ||
<authors>The CefSharp Authors</authors> | ||
<owners>The CefSharp Authors</owners> | ||
<projectUrl>https://github.com/cefsharp/cefsharp</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>The CefSharp Chromium-based browser component (Core components, needed by both WPF and WinForms).</description> | ||
<tags>chrome browser</tags> | ||
<copyright>Copyright © 2010-2013 The CefSharp Authors</copyright> | ||
</metadata> | ||
<files> | ||
<!-- CEF/Chromium files --> | ||
<file src="..\CEF\Win32\icudt.dll" target="CEF\x86" /> | ||
<file src="..\CEF\x64\icudt.dll" target="CEF\x64" /> | ||
<file src="..\CEF\Win32\libcef.dll" target="CEF\x86"/> | ||
<file src="..\CEF\x64\libcef.dll" target="CEF\x64"/> | ||
<file src="..\CEF\locales\en-US.pak" target="CEF\locales"/> | ||
|
||
<!-- Common CefSharp stuff (shared between both WPF and WinForms) --> | ||
<file src="..\Win32\Release\CefSharp.dll" target="CefSharp\x86"/> | ||
<file src="..\x64\Release\CefSharp.dll" target="CefSharp\x64"/> | ||
<file src="..\CefSharp.BrowserSubprocess\bin\x86\Release\CefSharp.BrowserSubprocess.exe" target="CefSharp\x86"/> | ||
<file src="..\CefSharp.BrowserSubprocess\bin\x64\Release\CefSharp.BrowserSubprocess.exe" target="CefSharp\x64"/> | ||
|
||
<file src="CefSharp.Core.props" target="build" /> | ||
<file src="CefSharp.Core.targets" target="build" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Reference Condition="'$(Platform)' == 'x86'" | ||
Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Wpf.dll" /> | ||
|
||
<Reference Condition="'$(Platform)' == 'x64'" | ||
Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Wpf.dll" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
set version=3.29.0-pre0 | ||
NuGet pack CefSharp.Core.nuspec -NoPackageAnalysis -Version %version% | ||
NuGet pack CefSharp.Wpf.nuspec -NoPackageAnalysis -Version %version% |