LogicBlocksGenerator 0.1.4
dotnet tool install --global LogicBlocksGenerator --version 0.1.4
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
dotnet tool install --local LogicBlocksGenerator --version 0.1.4
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=LogicBlocksGenerator&version=0.1.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package LogicBlocksGenerator --version 0.1.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
LogicBlocksGenerator
LogicBlocksGenerator is a code gen tool for quickly creating setting up all the boiler plate code needed in order to use Chickensoft's LogicBlocks inside of a Godot project.
While Chickensoft's LogicBlocks being installed is not a requirement to run this tool, you should have it installed anyways. So go do that part first.
Tested on
- Windows 11
- MacOS
- *Nix
Installation and Usage
Install From NuGet
dotnet tool install --global LogicBlocksGenerator
Run
logicblocksgen generate \
--namespace MyGame.Application \
--name TestLogic \
--output ./TestLogicBlock/ \
Build & Run From Source
Build
git clone git@github.com:madisodr/LogicBlocksGenerator.git
cd LogicBlocksGenerator
dotnet build
Run
Example, if you have a project namespace of "MyGame" and a folder "Application" which you want to generate a LogicBlock for, the following command will output the necessary files to ./MyGame/Application/State/*
dotnet run -- generate \
--namespace MyGame.Application \
--name TestLogic \
--output ./TestLogicBlock/ \
Testing
From within the LogicBlocksGenerator folder
dotnet test LogicBlocksGenerator.Tests/
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.