{"id":46138696,"url":"https://github.com/untrustedmodders/plugify-module-dotnet","last_synced_at":"2026-04-04T18:09:43.313Z","repository":{"id":247239060,"uuid":"812700954","full_name":"untrustedmodders/plugify-module-dotnet","owner":"untrustedmodders","description":"C# (.NET) Language Module","archived":false,"fork":false,"pushed_at":"2026-03-11T00:31:31.000Z","size":407,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-11T00:57:23.124Z","etag":null,"topics":["csharp","dotnet","language-module","plugify","plugify-module"],"latest_commit_sha":null,"homepage":"https://plugify.net/plugify-module-dotnet/","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/untrustedmodders.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-09T16:28:07.000Z","updated_at":"2026-03-11T00:31:25.000Z","dependencies_parsed_at":"2024-08-07T01:28:15.592Z","dependency_job_id":"290ff85c-6120-46ef-836e-c65d07493dfd","html_url":"https://github.com/untrustedmodders/plugify-module-dotnet","commit_stats":null,"previous_names":["untrustedmodders/dotnet-lang-module","untrustedmodders/plugify-module-dotnet"],"tags_count":115,"template":false,"template_full_name":null,"purl":"pkg:github/untrustedmodders/plugify-module-dotnet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-dotnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-dotnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-dotnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-dotnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/untrustedmodders","download_url":"https://codeload.github.com/untrustedmodders/plugify-module-dotnet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-dotnet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30368529,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"online","status_checked_at":"2026-03-11T02:00:07.027Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["csharp","dotnet","language-module","plugify","plugify-module"],"created_at":"2026-03-02T05:31:44.454Z","updated_at":"2026-03-11T03:00:57.682Z","avatar_url":"https://github.com/untrustedmodders.png","language":"C#","readme":"[![Русский](https://img.shields.io/badge/Русский-%F0%9F%87%B7%F0%9F%87%BA-green?style=for-the-badge)](README_ru.md)\n\n# C# (.NET) Language Module for Plugify\n\nThe C# (.NET) Language Module for Plugify facilitates the development of plugins in C# for the Plugify framework. With this module, you can seamlessly integrate C# plugins, allowing dynamic loading and management by the Plugify core.\n\n## Features\n\n- **C# (.NET) Plugin Support**: Write your plugins in C# (.NET) and seamlessly integrate them with the Plugify framework.\n- **Automatic Exporting**: Effortlessly export and import methods between plugins and the language module.\n- **Initialization and Cleanup**: Handle plugin initialization, startup, and cleanup with dedicated module events.\n- **Interoperability**: Communicate with plugins written in other languages through auto-generated interfaces.\n\n**Note**: All C# (.NET) plugins are hosted within the single domain. This allows for seamless collaboration and interaction between C# plugins without the Plugify framework.\n\n## Getting Started\n\n### Prerequisites\n\n- .NET Runtime [(.NET 10.0.0)](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)\n- Plugify Framework Installed\n\n### Installation\n\n#### Option 1: Install via Plugify Plugin Manager\n\nYou can install the C++ Language Module using the Mamba package manager by running the following command:\n\n```bash\nmamba install -n your_env_name -c https://untrustedmodders.github.io/plugify-module-dotnet/ plugify-module-dotnet\n```\n\n#### Option 2: Manual Installation\n\n1. Install dependencies:  \n\n   a. Windows\n   \u003e Setting up [CMake tools with Visual Studio Installer](https://learn.microsoft.com/en-us/cpp/build/cmake-projects-in-visual-studio#installation)\n\n   b. Linux:\n   ```sh\n   sudo apt-get install -y build-essential cmake ninja-build\n   ```\n   \n   c. Mac:\n   ```sh\n   brew install cmake ninja\n   ```\n\n2. Clone this repository:\n\n    ```bash\n    git clone https://github.com/untrustedmodders/plugify-module-dotnet.git --recursive\n    cd plugify-module-dotnet\n    ```\n\n3. Build the C# (.NET) language module:\n\n    ```bash\n    mkdir build \u0026\u0026 cd build\n    cmake ..\n    cmake --build .\n    ```\n\n### Usage\n\n1. **Integration with Plugify**\n\n   Ensure that your C# (.NET) language module is available in the same directory as your Plugify setup.\n\n2. **Write C# Plugins**\n\n   Develop your plugins in C# using the Plugify C# API. Refer to the [Plugify C# Plugin Guide](https://untrustedmodders.github.io/languages/csharp/first-plugin) for detailed instructions.\n\n3. **Build and Install Plugins**\n\n   Compile your C# plugins and place the assemblies in a directory accessible to the Plugify core.\n\n4. **Run Plugify**\n\n   Start the Plugify framework, and it will dynamically load your C# plugins.\n\n## Example\n\n```c#\nusing Plugify;\n\nnamespace ExamplePlugin\n{\n    public class SamplePlugin : Plugin\n    {\n        public void OnPluginStart()\n        {\n            Console.WriteLine(\".NET: OnPluginStart\");\n        }\n        \n        public void OnPluginUpdate(float dt)\n        {\n            Console.WriteLine(\".NET: OnPluginUpdate\");\n        }\n    \n        public void OnPluginEnd()\n        {\n            Console.WriteLine(\".NET: OnPluginEnd\");\n        }\n    }\n}\n```\n\n## Documentation\n\nFor comprehensive documentation on writing plugins in C# (.NET) using the Plugify framework, refer to the [Plugify Documentation](https://untrustedmodders.github.io).\n\n## Contributing\n\nFeel free to contribute by opening issues or submitting pull requests. We welcome your feedback and ideas!\n\n## License\n\nThis C# (.NET) Language Module for Plugify is licensed under the [MIT License](LICENSE).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funtrustedmodders%2Fplugify-module-dotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funtrustedmodders%2Fplugify-module-dotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funtrustedmodders%2Fplugify-module-dotnet/lists"}