MasterCommander 1.0.2
See the version list below for details.
dotnet add package MasterCommander --version 1.0.2
NuGet\Install-Package MasterCommander -Version 1.0.2
<PackageReference Include="MasterCommander" Version="1.0.2" />
paket add MasterCommander --version 1.0.2
#r "nuget: MasterCommander, 1.0.2"
// Install MasterCommander as a Cake Addin #addin nuget:?package=MasterCommander&version=1.0.2 // Install MasterCommander as a Cake Tool #tool nuget:?package=MasterCommander&version=1.0.2
MasterCommander
Write code, not commands. MasterCommander provides a simple, consistent interface for common development tasks.
MasterCommander is a versatile command-line utility designed to streamline the workflow for developers working with multiple technology stacks. By integrating common operations for Git, .NET, Docker, and npm into a single application, MasterCommander enhances productivity and simplifies project setup and management tasks. |
---|
๐ Table of Contents
- MasterCommander
๐ Getting started
Use your favorite CLI tools without leaving your code editor:
This example demonstrates how to use MasterCommander to create a new .NET solution and project, initialize a Git repository, and build and run the project. In addition, this code adds a .gitignore file, an .editorconfig file, and a global.json file to the project.
private const string SdkVersion = "8.0.101";
private const string SolutionName = "AppDemo";
private const string ConsoleProjectName = $"{SolutionName}.Console";
private const string ConsoleProjectDirectory = $"src/{ConsoleProjectName}";
private const string ConsoleCsproj = $"{ConsoleProjectDirectory}/{ConsoleProjectName}.csproj";
await git.InitAsync();
await git.StatusAsync();
await dotnet.NewAsync(new DotnetNewGitignoreOptions());
await dotnet.NewAsync(new DotnetNewEditorConfigOptions());
await dotnet.NewAsync(new DotnetNewNuGetConfigOptions());
await dotnet.NewAsync(new DotnetNewGlobalJsonOptions { SdkVersion = SdkVersion });
await dotnet.NewAsync(new DotnetNewSolutionOptions { OutputName = SolutionName });
await dotnet.NewAsync(new DotnetNewConsoleOptions { OutputName = ConsoleProjectName, OutputDirectory = ConsoleProjectDirectory });
await dotnet.SlnAddAsync(ConsoleCsproj);
await dotnet.BuildAsync();
await dotnet.BuildAsync(new DotnetBuildOptions { Configuration = "Release" });
await dotnet.RunAsync(new DotnetRunOptions { Project = ConsoleCsproj, Configuration = "Release" });
You can standardize your development workflow by using MasterCommander to perform common tasks across multiple projects and technology stacks.
Output from MasterCommander commands is displayed in a clean, readable format:
๐ Documentation
MasterCommander provides a COMPLETE DOCUMENTATION of the library.
All summaries are written in English. If you want to help us translate the documentation, please open an issue to discuss it.
Note: The documentation is generated using Doraku/DefaultDocumentation tool. It is generated automatically when the project is built.
๐ Features
Current Features
- Unified Interface: MasterCommander provides a single interface for interacting with multiple development tools.
- Simple Commands: Execute common development tasks with simple, intuitive commands.
- Cross-Platform: MasterCommander is designed to work on Windows, macOS, and Linux.
- Customizable: Add new commands and features to MasterCommander to suit your workflow.
Roadmap (next features)
- WIP โ .NET Projects: Easily create new .NET solutions and projects.
- WIP โ Git Integration: Initialize new repositories, check status, and more with built-in Git commands.
- WIP โ Docker Support: Manage Docker containers and images through simple commands.
- WIP โ npm Packages: Handle npm packages and run npm scripts within your projects.
- Comprehensive API documentation that is easy to understand
- High-Level API for common use cases
- More tests
- More examples
- More features
๐ฅ Installation
๐ Prerequisites
To use MasterCommander, ensure you have the following installed on your system:
- Git
- .NET 8.0 (supported versions: 8.0.101 or later)
- A C# IDE (Visual Studio, JetBrains Rider, etc.)
- A C# compiler (dotnet CLI, etc.)
- Docker (optional)
- Node.js and npm (optional)
We use the latest C# features
This library targets .NET 8.0 and uses the latest C# features. It is written in C# 12.0 and uses the new init
properties, record
types, switch
expressions, using
declarations and more.
I invite you to read the C# 12.0 documentation to learn more about these features.
๐ From Source
You can also build MasterCommander from source. Follow these steps to get started:
- Clone the repository to your local machine.
- Navigate to the cloned directory and build the project using the .NET CLI:
dotnet build
. - Run the application with
dotnet run
from within the source directory. - Or... open the project in Visual Studio (or JetBrains Rider) and run the application from the IDE.
๐ฆ NuGet Packages
To install MasterCommander, you can use the NuGet package manager. Run the following command in your terminal:
dotnet add package MasterCommander --version 1.0.0-alpha.0.40
Package Name | NuGet Version Badge | NuGet Downloads Badge | Package Explorer |
---|---|---|---|
MasterCommander | Explore |
This table is automatically updated regularly the latest developments and releases.
๐ Code Quality
We strive for the highest code quality in MasterCommander. To ensure this, we use the following tools:
- StyleCop
- .editorconfig
๐งช Tests Specifications
We use xUnit and FluentAssertions to write and run tests for MasterCommander. This ensures that the library is reliable and performs as expected.
๐ค Contributing
How to contribute?
Contributions to MasterCommander are welcome! Whether it's reporting bugs, discussing improvements, or submitting pull requests, all contributions help make MasterCommander a better tool for developers.
Before submitting pull requests, please ensure you have discussed the proposed changes with the project maintainers.
A great way to contribute to MasterCommander is to add new commands. If you have a command you'd like to see added to MasterCommander, please open an issue to discuss it.
Contributors
โ Issues and Feature Requests
For reporting bugs or suggesting new features, kindly submit these as an issue to the MasterCommander Repository. We value your contributions, but before submitting an issue, please ensure it is not a duplicate of an existing one.
โ๏ธ Contact
You can contact us by opening an issue on this repository.
๐ License
GNU General Public License v3.0 or later.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- CliWrap (>= 3.6.6)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Spectre.Console (>= 0.48.0)
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 |
---|---|---|
1.0.4 | 141 | 3/14/2024 |
1.0.3 | 123 | 2/27/2024 |
1.0.2 | 125 | 2/12/2024 |
1.0.1 | 112 | 2/12/2024 |
1.0.0-alpha.0.47 | 53 | 2/11/2024 |
1.0.0-alpha.0.45 | 49 | 2/11/2024 |
1.0.0-alpha.0.44 | 54 | 2/11/2024 |
1.0.0-alpha.0.43 | 52 | 2/11/2024 |
1.0.0-alpha.0.42 | 49 | 2/11/2024 |
1.0.0-alpha.0.41 | 53 | 2/11/2024 |
1.0.0-alpha.0.40 | 58 | 2/10/2024 |