SIGN IN SIGN UP
cefsharp / CefSharp UNCLAIMED

.NET (WPF and Windows Forms) bindings for the Chromium Embedded Framework

0 0 144 C#
# CefSharp - Embedded Chromium for .NET
2012-02-18 22:14:34 -08:00
This project contains .NET CLR bindings for The [Chromium Embedded Framework (CEF)](http://code.google.com/p/chromiumembedded/ "Google Code") by Marshall A. Greenblatt. The bindings are written in C++/CLI but can be used from any CLR language, e.g. C# or VB. CefSharp provides both WinForms and WPF web browser control implementations. See the CefSharp.WinForms.Example or CefSharp.Wpf.Example projects for example web browsers built using this library; they are (at this moment) the best "documentation" of how the control can actually be used.
2012-02-18 22:14:34 -08:00
This project is [BSD](http://www.opensource.org/licenses/bsd-license.php "BSD License") licensed, which means that it can be used from both proprietary and free/open source applications. For the full details, see the [LICENSE](LICENSE) file.
2012-02-18 22:14:34 -08:00
# Documentation & mailing list
2013-08-01 10:42:17 +03:00
Work-in-progress documentation can be found [in the wiki](https://github.com/cefsharp/CefSharp/wiki). If something is missing/incomplete, please don't hesitate to ask at the [CefSharp Google Group](https://groups.google.com/forum/#!forum/cefsharp). You might also find help by searching the archive to that same Google Group for previous questions.
2013-08-01 10:42:17 +03:00
2012-03-18 20:37:43 -07:00
# Binary Release
2012-02-18 22:14:34 -08:00
Binary releases contain everything needed to embed Chromium in your CLR application.
2012-02-18 22:14:34 -08:00
- **Pre-release** - CefSharp-3.29.0-pre.0 Currently only available as a WPF [NuGet](http://www.nuget.org/packages/CefSharp.Wpf/3.29.0-pre0). NuGet is CefSharp's new primary (only?) binary delivery mechanism.
* **Stable** (.NET 4): CefSharp-1.25.7 -
[binaries](https://github.com/cefsharp/CefSharp/releases/download/v1.25.7/CefSharp-v1.25.7-binaries.zip),
[source](https://github.com/cefsharp/CefSharp/archive/v1.25.7.zip), + [WPF](http://www.nuget.org/packages/CefSharp.Wpf/) or
[WinForms](http://www.nuget.org/packages/CefSharp.WinForms/) NuGet's. Based on Chromium 25.0.1364.152
* **Legacy** (older release, works with .NET 2. Requires [7-Zip](http://www.7-zip.org/) to extract.):
[CefSharp-1.25.0](http://sourceforge.net/projects/cefsharp/files/CefSharp-1.25.0.7z/download).
Based on Chromium 25.0.1364.152
See the [SF Downloads](https://sourceforge.net/projects/cefsharp/files/) page for even older releases. Please note that the latest Stable release, *or preferably the new CEF3 Pre-release getting out of beta real-soon-now*, is the only version officially supported; it's very unlikely that we will fix bugs in older releases.
2012-02-18 22:29:59 -08:00
2014-03-18 00:36:34 +01:00
# Branches & Forks
2013-03-11 15:23:27 -07:00
2014-03-18 19:29:24 +02:00
* Development is done in the `master` branch, which *used to be called* `CefSharp3` during the development cycle. New features are preferably added in feature branches, if the changes are more than trivial.
2014-03-18 00:36:34 +01:00
* Ultra-stable/LTS work is done in `CefSharp1`.
* [The CefSharp project page](https://github.com/cefsharp/CefSharp) is the recommended starting place. This is the "official" CefSharp fork, as maintained by the CefSharp community. You can also view [the entire network of public forks/branches](https://github.com/cefsharp/CefSharp/network).
2013-03-11 15:23:27 -07:00
2012-02-18 22:29:59 -08:00
# Links
2014-03-18 00:37:52 +01:00
- [CefGlue](https://bitbucket.org/fddima/cefglue/wiki/Home): An alternative .NET CEF wrapper built using P/Invoke.