{"id":19238323,"url":"https://github.com/r-larch/tcbuild","last_synced_at":"2025-04-21T07:31:32.101Z","repository":{"id":55391763,"uuid":"181970557","full_name":"r-Larch/TcBuild","owner":"r-Larch","description":"Tool to build .NET Total Commander Plugins","archived":false,"fork":false,"pushed_at":"2021-09-26T22:09:59.000Z","size":818,"stargazers_count":4,"open_issues_count":4,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-17T12:33:54.058Z","etag":null,"topics":["build-tool","nuget-package","plugin-loader","plugin-sdk","total-commander","totalcmd"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/r-Larch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-17T21:25:44.000Z","updated_at":"2024-11-17T09:24:24.000Z","dependencies_parsed_at":"2022-08-14T23:10:59.790Z","dependency_job_id":null,"html_url":"https://github.com/r-Larch/TcBuild","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r-Larch%2FTcBuild","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r-Larch%2FTcBuild/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r-Larch%2FTcBuild/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r-Larch%2FTcBuild/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/r-Larch","download_url":"https://codeload.github.com/r-Larch/TcBuild/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250014656,"owners_count":21360989,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["build-tool","nuget-package","plugin-loader","plugin-sdk","total-commander","totalcmd"],"created_at":"2024-11-09T16:31:14.496Z","updated_at":"2025-04-21T07:31:27.089Z","avatar_url":"https://github.com/r-Larch.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# TcBuild\n\nTcBuild is a tool to build Total Commander plugins that are written in .NET\n\n[![Build status](https://ci.appveyor.com/api/projects/status/a93fev9ym9leg16h/branch/master?svg=true)](https://ci.appveyor.com/project/r-Larch/tcbuild/branch/master)\n[![Nuget (with prereleases)](https://img.shields.io/nuget/vpre/TcBuild.svg?style=flat)](https://www.nuget.org/packages/TcBuild/)\n\n\n## Nuget\n\n```powershell\nInstall-Package TcBuild\n```\n\n## Possible Plugins\n\n|  Plugin           |  Total Commander name  | Example                                                             |\n|-------------------|------------------------|---------------------------------------------------------------------|\n| FileSystem Plugin |    .wfx - plugin       | [TcPlugin.AzureBlob](https://github.com/r-Larch/TcPlugin.AzureBlob) |\n| Content Plugin    |    .wdx - plugin       | comming soon                                                        |\n| Lister Plugin     |    .wlx - plugin       | comming soon                                                        |\n| Packer Plugin     |    .wcx - plugin       | comming soon                                                        |\n\nSee [Total Commander plugin types](https://www.ghisler.ch/wiki/index.php/Plugin#Plugin_types).\n\n\n# Create a plugin\n\nCreate a .NET Library Project targeting net472 or newer and install `TcBuild` nuget package.\nThe TcBuild nuget comes with some base classes and interfaces to get you started.\nSo you just have to create a class inheriting from \none of the following plugin base classes:\n\n* ContentPlugin\n* FsPlugin\n* ListerPlugin\n* PackerPlugin\n* QuickSearchPlugin\n\nThen override all methods that you like to support in your plugin.\n\n\n# Build a Release\n\nThe TcBuild nuget contains a MsBuild Task to perform all required transformations on your .dll\nand it produces a `.zip` file, in build output folder, which can be installed with Total Commander auto installer.\n\nMore infos: [Installation using Total Commander's integrated plugin installer](https://www.ghisler.ch/wiki/index.php/Plugin#Installation_using_Total_Commander.27s_integrated_plugin_installer)\n\n\n# Copyright\n\nThe idea for .NET Total Commander plugins came from **Oleg Yuvashev** \nwhich wrote the original **[TC .NET Interface](https://totalcmd.net/plugring/TCdotNetInterface.html)**\nthat runs on .NET 4.0 and is not that easy to get up and running.\n * [Oleg Yuvashev on sourceforge.net](https://sourceforge.net/p/tcdotnetinterface/code/HEAD/tree/trunk/)\n\nSo I (René Larch) used his code (it is Licesed as MIT) and wrote this Nuget with it.\n\n### Pros and cons of TcBuild compared to TC .NET Interface\n\n|\t\t\t\t\t\t| TcBuild\t\t\t\t\t\t\t\t| TC .NET Interface\t\t\t\t\t\t\t\t|\n|-----------------------|---------------------------------------|-----------------------------------------------|\n| .NET Version\t\t\t| ✔️ .NET 4.7.2\t\t\t\t\t\t\t| ❌.NET 1.0 \u0026 .NET 4.0\t\t\t\t\t\t\t|\n| Getting started\t\t| ✔️Install this Nuget\t\t\t\t\t| ❌Lots of work\t\t\t\t\t\t\t\t\t|\n| Global Assembly Cache | ✔️--\t\t\t\t\t\t\t\t\t| ❌It needs two dlls in GAC\t\t\t\t\t\t|\n| AppDomain Isolation   | ❌Not now, maybe I reimplement it later | ✔️Yes it load your Plugin in its own AppDomain\t|\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr-larch%2Ftcbuild","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fr-larch%2Ftcbuild","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr-larch%2Ftcbuild/lists"}