This repository has been archived by the owner on Oct 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
dotnet cli Starter Template
- Download template. Create an empty folder for the project and install.
mkdir projectname
cd projectname
dotnet new chromelywin
[If chromelywin is not available, please install with -
dotnet new -i "Chromely.CefGlue.Win.Template::*"
if successful, run "dotnet new chromelywin" again.
]
- Restore references.
dotnet restore
- Get Cef binaries.
dotnet chromelycef.dll download v70 --cpu=x64 --dest="bin\Debug\netcoreapp2.1"
[For more options of chromelycef.dll use-
dotnet chromelycef.dll download -h
]
- Build project.
dotnet build
-
From Chromely.CefGlue.Winapi version 65 and upward, this should not be needed anymore. Unless step 3 fails.
If CEF binaries files/folders download is required, please check - CefGlue Application Layout.
-
Start application.
dotnet run
The template is configured to run sub-process by default. To change that please see Sub-process.
- The template is configured to run as a Single Process Cef application.
- To change to Multi Process the project can be published as self-contained application. For more info check Getting Started CefGlue Winapi (.NET-Core).
Chromely
Getting Started
The Basics
Digging Deeper
- Sub-Process
- Infrastructure
- Restful Resources
- Register Resource Assemblies
- Custom Local Resource Handling
- Custom Scheme Handling
- Expose .NET class to JavaScript
- Generic Message Routing
- Real-time with Websocket
- External Url Registration
Angular - React - Vue