SimplSharp.Tool 0.1.10-cpz.2

This is a prerelease version of SimplSharp.Tool.
There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global SimplSharp.Tool --version 0.1.10-cpz.2                
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local SimplSharp.Tool --version 0.1.10-cpz.2                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=SimplSharp.Tool&version=0.1.10-cpz.2&prerelease                
nuke :add-package SimplSharp.Tool --version 0.1.10-cpz.2                

<img src="./target.png" alt="drawing" width="100"/>

Static Badge Static Badge Static Badge

SIMPL Sharp Targets

DOTNET TEST PUBLISH RELEASE

The SimplSharp Targets repository contains build tools used to generate CPZs CLZs and CPLZs. Packaged as a source controlled dotnet tool, the simpl sharp targets tool offers an alternative to Crestron's MSBUILD targets.

Build targets to override the default SIMPL Sharp SDK Targets and offer support for cross platform development.

Table of Contents

  1. Why
  2. Dotnet Tool
  3. Target Package
  4. Usage
  5. Examples

Why

Static Badge

So why would we need this? For automated CICD pipelines and new project templates. The default crestron msbuild targets use aniquated libraries and won't execute properly on github runners and other dotnet core build tools.

Plus its actually kindof nice to have a command line tool that creates CLZs

Dotnet Tool

Static Badge

Located in the source/SimplSharp.Tool directory you will find a dotnet 8 console application that provides required commands used to generate CLZ, CPZ, and CPLZ As of the first release only CLZs are supported This application is packaged as a dotnet tool and published to nuget.org

Install

Install the tool with the dotnet CLI

PS C:\dev> dotnet tool install --local SimplSharp.Tool --version <VERSIONNUMBER>

Execute

Run the tool with the dotnet simplsharp command

PS C:\dev> dotnet simplsharp --help
Usage: dotnet [command]

SimplSharp.Tool

Commands:
  clz    Creates a CLZ from the target assembly DLL referencing the SimplSharp SDK

Options:
  -h, --help    Show help message
  --version     Show version

CLZ Command

Execute the clz command to create a new simpl sharp library archive. Target an assembly that includes a reference to the Crestron.SimplSharp.SDK.Library nuget package. The CLZ command will fail to create the project configuration file if the SIMPL Sharp SDK is not referenced.

The destination switch is optional while the path is required. The path should target a compiled DLL library. The destination is optional and can create the new archive a specific location.

PS C:\dev> dotnet simplsharp clz --help
Usage: dotnet clz [--path <path>] [--destination <destination>] [--help]

Creates a CLZ from the target assembly DLL referencing the SimplSharp SDK

Options:
  -p, --path <path>                  File path for the compiled assembly that will be converted to a SimplSharp CLZ (Required)
  -d, --destination <destination>    Newly created CPZ destination
  -h, --help                         Show help message

Target Package

Static Badge

Located in the source/SimplSharp.Targets directory you will find a project containing nothing more than build files. This project is packaged as nuget to nuget.org.
When included as a project reference the SimplSharp.Targets build pipeline will attempt to install the dotnet tool, and execute the proper command line actions to generate the Simpl Sharp archives.

Usage

Static Badge

Library Project Setup

Copy the Directory.Build.targets file from the repositories ./targets folder to your projects directory. This file will effectivly cancel the build-in SIMPL Sharp Build targets. Add a refernece the SimplSharp.Library.Targets nuget package from nuget.org. Note the example/SimplSharp.Targets.Clz has been provided as a working functional example

TODO: Deliver the Directory.Build.targets file via the nuget package and remove the need to copy the files.

Compile Project

Once configured a pre-build step will install the SimplSharp.Tool. Once installed the projects build output will be directed through the tools command line and a CLZ will be generated using the tool. Note the version of the tool used will always match the version of the SimplSharp.Library.Targets nuget package used

Examples

Static Badge

Create a CLZ

The example below converts the compiled assembly SimplSharp.Library.dll to an archived SimplSharp.Library.clz library for the SIMPL+ compiler. By default the new CLZ will be created in the ..\SimplSharp.Library\bin\Debug\net472\ directory.

dotnet simplsharp clz --path ..\SimplSharp.Library\bin\Debug\net472\SimplSharp.Library.dll

Optionally provide a target destination and the CLZ will be archived to the provided location.

dotnet simplsharp clz --path ..\SimplSharp.Library\bin\Debug\net472\SimplSharp.Library.dll -d "C:/Temp/Libraries"
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.2.0 147 7/19/2024
0.2.0-bug-install-tool.1 38 7/19/2024
0.2.0-alpha.98 36 7/19/2024
0.1.10 80 7/18/2024
0.1.10-cpz.2 49 7/18/2024
0.1.10-cpz.1 41 7/18/2024
0.1.9 80 7/15/2024
0.1.9-directory-targets.1 44 7/13/2024
0.1.8 90 7/12/2024
0.1.7 78 7/11/2024
0.1.6 71 7/11/2024
0.1.5 81 7/10/2024
0.1.4 81 7/10/2024
0.1.3 86 7/10/2024
0.1.2 76 7/10/2024
0.1.2-release.1 46 7/10/2024
0.1.0 76 7/10/2024