FarNet.template
1.2.0
Prefix Reserved
See the version list below for details.
dotnet new install FarNet.template::1.2.0
FarNet.template
FarNet module template for C# and F# projects
With .NET SDK installed with Visual Studio 2017+ or manually, the easiest way to create module projects for FarNet is using FarNet.template from the NuGet gallery.
Projects created from the template can be used for development and debugging in Visual Studio and VSCode.
.NET Core is not supported at the moment, see #16.
To install the FarNet module template from the NuGet gallery, run:
dotnet new -i FarNet.template
Take a look at all templates:
dotnet new -l
The list should contain "FarNet module":
Templates Short Name Language Tags
-----------------------------------------------------
FarNet module farnet [C#], F# FarNet/Module
Then you can create projects using the installed template.
To create a C# (default) or F# module project, create a new folder with your module name, change to it, and run:
dotnet new farnet
dotnet new farnet -lang F#
After creating a project take a look at its README.md. It describes the generated assets, tells how to use, debug, etc.
To uninstall the template, run:
dotnet new -u FarNet.template
FarNet module created from template
Before opening created projects in Visual Studio or VSCode ensure you have the
environment variable FARHOME set to the Far Manager directory. If it is missing
then the development location C:\Bin\Far\x64
is used, see the project file
and change if needed. If you start Visual Studio or VSCode from Far Manager
then FARHOME is set.
Visual Studio
The project is ready to use in Visual Studio.
VSCode
Requirements:
- VSCode C# extension for C# projects and for debugging F# projects.
- VSCode F# extension for F# projects.
Project content
- .vscode
- launch.json - VSCode debug settings
- tasks.json - VSCode build task
- Properties
- launchSettings.json - Visual Studio debug settings
- Name.csproj or Name.fsproj - project file
- README.md - documentation file
- Host.cs or Host.fs - optional module host
- Tool1.cs or Tool1.fs - plugin menu item "Hello"
All projects have references to FarNet and FarNet.Tools.
F# projects have references to the mandatory FSharp.Core.dll and optional FarNet.FSharp.dll. These assemblies are installed together with the module FarNet.FSharpFar.
You may remove not used optional references but they are harmless.
When you build a project the post build step copies built files to the FarNet module directory. Ensure Far Manager is not running to avoid files in use.
The module created from the template adds a "Hello" item to the Far Manager plugin menus. This item shows a message box.
Debugging
Press [F5]
to starts debugging of your module.
Debug modes:
- Start Far (Visual Studio, VSCode default mode)
- The build step is called at first and then debugging starts. Far.exe should be in the path or you should adjust settings.
- Attach single Far (select in VSCode)
- Attach to the already running single Far.exe.
- Attach selected Far (select in VSCode)
- Choose one of the several running Far.exe.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
6.0.0 | 87 | 11/30/2024 |
5.0.0 | 3,220 | 11/19/2023 |
4.0.3 | 404 | 4/8/2023 |
4.0.2 | 465 | 1/2/2023 |
4.0.1 | 364 | 11/19/2022 |
4.0.0 | 322 | 11/19/2022 |
3.0.2 | 465 | 10/18/2022 |
3.0.1 | 457 | 10/13/2022 |
3.0.0 | 424 | 10/8/2022 |
2.2.0 | 492 | 8/25/2022 |
2.0.1 | 473 | 7/31/2022 |
2.0.0 | 455 | 7/19/2022 |
1.3.0 | 475 | 6/11/2022 |
1.2.1 | 433 | 6/10/2022 |
1.2.0 | 425 | 6/10/2022 |
1.1.0 | 442 | 6/3/2022 |
1.0.3 | 487 | 2/12/2022 |
1.0.2 | 2,476 | 12/26/2020 |
1.0.1 | 581 | 12/19/2019 |
1.0.0 | 582 | 12/15/2019 |
0.0.4 | 1,362 | 9/3/2018 |
0.0.2 | 1,212 | 3/23/2018 |
0.0.1 | 972 | 3/19/2018 |
Add Host.cs, Host.fs, README.md.